標題:
基本輸入輸出
[打印本頁]
作者:
鄭繼威
時間:
2022-3-16 13:47
標題:
基本輸入輸出
本帖最後由 鄭繼威 於 2022-4-18 20:16 編輯
cout 輸出<-------->cin 輸入
cout<<x; 輸出x
cin>>x; 輸入x
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-3-16 20:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-16 20:32
本帖最後由 黃裕恩 於 2022-3-16 20:42 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-3-16 20:41
本帖最後由 陳牧謙 於 2022-3-16 20:43 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數: ";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-3-16 20:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-4-13 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//宣告變數
//變數型態 變數名稱(=賦予值)
int score;
cout<<"請輸入成績:";
cin>>score;
//開始判斷
//分數=100
if(score==100){
cout<<"滿分"<<endl;
}
//60~99 -> 60<=score<100
else if(score>=60 && score<100){
cout<<"好高分"<<score<<endl;
}
//1~59 -> 0<=score<60
else if(score>=1 && score<60){
cout<<"不及格,你的分數:"<<score<<endl;
}
//score=0
else if(score==0){
cout<<"零分"<<endl;
}
//其他狀況 0~100以外
else{
cout<<"輸入錯誤"<<endl;
}
system("pause"); //黑色畫面暫停
return 0; //告知主程式已完成
}
複製代碼
作者:
鄭繼威
時間:
2022-4-18 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//你要做的事
//宣告變數
//變數型態 變數名稱=賦予值
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"a的內容為:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-4-18 20:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"a的內容為: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-4-18 20:17
#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