標題:
基本輸入輸出
[打印本頁]
作者:
tonyh
時間:
2015-8-11 14:30
標題:
基本輸入輸出
cin 輸入
cout 輸出
作者:
tonyh
時間:
2015-8-11 14:37
#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-8-11 14:46
#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-8-11 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int h,i;
cout<<"請輸入h:";
cin>>h;
cout<<"請輸入i:";
cin>>i;
cout<<"h="<<h<<endl;
cout<<"i="<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-8-11 14:53
#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;
system("pause");
return 0;
}
複製代碼
作者:
柳晟緯
時間:
2015-8-11 14:54
#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;
system("pause");
return 0;
}
複製代碼
作者:
顏宇呈
時間:
2015-8-11 14:55
#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;
system("pause");
return 0;
}
複製代碼
作者:
鍾帛融
時間:
2015-8-11 14:58
#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;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2