標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2016-1-22 10:17
標題:
基本輸入輸出 (一)
本帖最後由 tonyh 於 2016-1-22 10:34 編輯
基本輸入輸出練習
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-1-22 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入整數";
cin>>a;
cout<<"你輸入數字"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李啟綸
時間:
2016-1-22 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"please enter an integer: ";
cin>>a;
cout<<"the number your entered was: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-1-22 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int--->integer 整數
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-1-22 10:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>> a;
cout<<"su3e;你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫沛庭
時間:
2016-1-22 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
潘彥勳
時間:
2016-1-22 10:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x;=23
//int y;=7
int x=23,y=7;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔承緯
時間:
2016-1-22 10:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入整數:";
cin>>a;
cout<<"你剛輸入數字:" <<a<<endl;
system("pause");
return 0;
}
作者:
洪億承
時間:
2016-1-22 10:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"你剛輸入的數字是:"<<a<<endl;
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2