標題:
基本輸入輸出
[打印本頁]
作者:
鄭繼威
時間:
2023-11-29 05:36
標題:
基本輸入輸出
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;
}
複製代碼
作者:
李宗儒
時間:
2023-12-6 19:11
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2