標題:
基本輸入輸出 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-8-17 10:27
標題:
基本輸入輸出 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏安
時間:
2020-8-17 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
作者:
康恆睿
時間:
2020-8-17 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡惟丞
時間:
2020-8-17 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳英睿
時間:
2020-8-17 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁仲維
時間:
2020-8-17 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄞美旭
時間:
2020-8-17 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
林妤凡
時間:
2020-8-17 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
于舜合
時間:
2020-8-17 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<< endl;
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2020-8-17 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>> a;
cout<<"您輸入的整數是" <<a << endl;
system("pause");
return 0;
}
複製代碼
作者:
于舜合
時間:
2020-8-17 15:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2