標題:
基本輸入輸出 (一)
[打印本頁]
作者:
許婷芳
時間:
2020-1-20 22:19
標題:
基本輸入輸出 (一)
本帖最後由 許婷芳 於 2020-1-21 14:49 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //宣告一個名為a的空間放入整數。 int是integer(整數)的縮寫
cout<<"請輸入一整數:";
cin>>a; //把使用者輸入的整數放入a中
cout<<"您剛剛輸入的整數是"<<a<<endl; //重複確認整數有沒有成功放入a中
system("pause");
return 0;
}
複製代碼
作者:
姚夙葦
時間:
2020-1-21 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數字:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方廷愷
時間:
2020-1-21 14:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您剛剛輸入的整數是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧薪勝
時間:
2020-1-21 14:55
#include<iostream> // IO
#include<cstdlib> // Library
using namespace std; //指定命名空間
int main() //主函式
{
int a;
cout<<"Please Enter a Whole Number ";
cin>>a;
cout<<"The number you just enter is "<<a<<endl;
system("pause"); //畫面暫停
return 0; //回傳0至主控台,告知程式已成功結束
}
複製代碼
作者:
鐘彥博
時間:
2020-1-21 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
穆宥臻
時間:
2020-1-21 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您剛剛輸入的整數是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
穆玨諺
時間:
2020-1-21 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇冠丞
時間:
2020-1-21 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您剛剛輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳頡鴻
時間:
2020-1-21 15:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout <<"請輸入一個整數:";
cin >> a; //把使用者輸入的整數放入a中
cout<<"你剛剛輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭義賢
時間:
2020-1-21 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你輸入的整數是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇柏羽
時間:
2020-1-21 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的整數是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳沛頤
時間:
2020-1-21 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;//宣告一個名為a的空間放入整數
cout <<"請輸入一整數:" ;
cin >>a;//把使用者輸入的整數放入a中
cout <<"您剛剛輸入的整數是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔裕倫
時間:
2020-1-21 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你輸入的整數是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2