標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2017-2-3 14:46
標題:
基本輸入輸出 (一)
本帖最後由 tonyh 於 2017-2-3 15:17 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數為 "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳宇翔
時間:
2017-2-3 15:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"您輸入的是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邵顯茗
時間:
2017-2-3 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳尚謙
時間:
2017-2-3 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"剛輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張閎鈞
時間:
2017-2-3 15:05
本帖最後由 張閎鈞 於 2017-2-3 15:06 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}[code][/code]
作者:
呂亮逵
時間:
2017-2-3 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數: ";
cin>> a;
cout<<"你剛輸入的是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟軒
時間:
2017-2-3 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柯識一
時間:
2017-2-3 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<< "請輸入一個整數" ;
cin >>a ;
cout<<"您剛輸入的是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊晉安
時間:
2017-2-3 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int a;
cout<<"請輸入一個整數: ";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曹瑈芠
時間:
2017-2-3 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x;
//int z;
int x=23,z=7;
cout<<"當x的值為"<<x<<",z的值為"<<z<<"時..."<<endl;
cout<<"x+z="<<x+z<<endl;
cout<<"x-z="<<x-z<<endl;
cout<<"x*z="<<x*z<<endl;
cout<<"x/z="<<x/z<<endl;
cout<<"x%z="<<x%z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曹瑈芠
時間:
2017-2-3 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>> a;
cout<<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張凱婷
時間:
2017-2-3 15:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin<<a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳冠諺
時間:
2017-2-3 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"剛輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2