標題:
基本輸入輸出
[打印本頁]
作者:
鄭繼威
時間:
2022-11-17 21:07
標題:
基本輸入輸出
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-11-18 20:34
#include<iostream>
using namespace std;
int main(){
//整數 int 10,50,100..
//浮點數(小數) float 3.14...
//字元 char 'a','b','@'
//字串 string "abcdefg","apple"
//宣告變數(盒子)
//變數型態 變數名字=賦予值
int a=50;
//cout輸出 <<串接符號(當方法、變數、字串要一起使用) endl換行
cout<<"a原本是:"<<a<<endl;
cout<<"請輸入數字:";
//cin輸入 >>(指向我要輸入的盒子)
cin>>a;
cout<<"a輸入後是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2022-11-18 20:46
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
作者:
曹祁望
時間:
2022-11-18 20:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
cout<<"輸入前的a="<<a<<endl;
cout<<"輸入a:";
cin>>a;
cout<<"輸入後的a="<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邵凡榛
時間:
2022-11-18 20:49
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式 //你要做的事
{
int a=50;
cout<<"a原本是:"<<a<<endl;
cout<<"請輸入數字:";
cin>>a;
//cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
盧玄皓
時間:
2022-11-18 20:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-11-18 20:51
#include<iostream> //引入 <標準函示庫> 標頭檔 c standard library
#include<cstdlib> //引入 <基本輸入輸出> 標頭檔 input & output stream
using namespace std; //指定命名空間為 std
int main() //主函式
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字: "<<a<<endl;
system("pause"); // 讓畫面暫停
return 0; //回傳到主控台,告知該程式已成功執行
}
複製代碼
作者:
廖秝瑜
時間:
2022-11-18 20:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2022-11-18 20:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int Z;
cout<<"輸入代碼: ";
cin>>Z;
cout<<"剛輸入的密碼: "<<Z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2022-11-18 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入數字: ";
cin>>a;
cout<<"你輸入的數字是: "<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
張絜晰
時間:
2022-11-18 20:53
#include<iostream>
using namespace std;
int main(){
int a=1;
cout<<"a本來是:"<<a<<endl;
cout<<"請輸入數字:" ;
cin>>a ;
cout<<"現在a是:"<<a<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2022-11-18 20:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2022-11-18 20:59
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
//你要做的事
string name="蔡沛倢",school="過埤國小",like="彈吉他,跳舞,睡覺,睡覺,再睡覺";
int age=11;
float h=146.7, w=39.9;
cout<<"我的名字: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
cout<<"興趣: "<<like<<"^^"<<endl;
int a;
cout<<"請輸入密碼:"<<a<<endl;
cin>>a;
cout<<"已解鎖"<<a<<endl;
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2