標題:
基本輸入輸出
[打印本頁]
作者:
tonyh
時間:
2015-7-2 15:17
標題:
基本輸入輸出
本帖最後由 tonyh 於 2015-7-3 11:52 編輯
基本輸入輸出練習
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張凱翔
時間:
2015-7-2 15:19
本帖最後由 tonyh 於 2015-7-3 10:08 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入x:";
cin>>x;
cout<<"你剛輸入的數字是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-7-3 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x值噢 OuO:";
cin>>x;
cout<<"請輸入y噢 OuO:";
cin>>y;
system("pause");
return 0;
}
複製代碼
作者:
洪煒庭
時間:
2015-7-3 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
錢建樺
時間:
2015-7-3 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐煒博
時間:
2015-7-3 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
cout<<"你剛輸入的數字是:"<<x<<endl;
cout<<"你剛輸入的數字是:"<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-7-3 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
錢建樺
時間:
2015-7-3 11:56
回復
4#
洪煒庭
要玩了沒
作者:
陳德晉
時間:
2015-7-3 11:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
tonyh
作者:
余洋毅
時間:
2015-7-3 11:57
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<"The number you enter is "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡秉宏
時間:
2015-7-3 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入x的值: ";
cin>>x;
cout<<"請輸入y的值: ";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承志
時間:
2015-7-3 12:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"the # you enter"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王奕勛
時間:
2015-7-4 09:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a<b)
{
cout<<"a<b"<<endl;
}
if(a==b)
{
cout<<"a=b"<<endl;
}
if(a>b)
{
cout<<"a>b"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2