標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2017-1-24 09:59
標題:
基本輸入輸出 (一)
本帖最後由 tonyh 於 2017-1-24 10:28 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數為 "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宋禹禛
時間:
2017-1-24 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你剛輸入的數字為"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
楊修禹
時間:
2017-1-24 10:12
#include<iostream> //
#include<cstdlib> //
using namespace std; //
int main()//
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子晏
時間:
2017-1-24 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂承霖
時間:
2017-1-24 10:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-1-24 10:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入數字:";
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宋禹禛
時間:
2017-1-24 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數";
cin>>a;
cout<<"你剛輸入的數字為"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
呂承霖
時間:
2017-1-24 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈竑希
時間:
2017-1-24 10:16
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
[/code]
作者:
楊修禹
時間:
2017-1-24 10:16
#include<iostream> //
#include<cstdlib> //
using namespace std; //
int main()//
{
int a;
cout<<"請您輸入任意數字"<<endl;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子晏
時間:
2017-1-24 10:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入一整數:";
int a;
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳翊愷
時間:
2017-1-24 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入一個數字:";
int a;
cin>>a;
cout<<"你剛輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃鼎家
時間:
2017-1-24 10:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余孟儒
時間:
2017-1-24 10:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"您輸入的數字是" <<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊修禹
時間:
2017-1-24 10:38
#include<iostream> //
#include<cstdlib> //
using namespace std; //
int main()//
{
int x,y;
cout<<"請輸入x的值為: ";
cin>>x;
cout<<"請輸入y的值為: ";
cin>>y;
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;
}
複製代碼
作者:
余孟儒
時間:
2017-1-24 11:02
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"輸入x:";
cin>>x;
cout<<"輸入y";
cin>>y;
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2