返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age=0; //數字=0 //變數的宣告
  7.     string school;
  8.    
  9.     cout<<"大家好我是顏可昕"<<endl;
  10.     cout<<"請輸入年齡"<<endl;
  11.     cin>>age;//10 age   
  12.     cout<<"請輸入你的學校"<<endl;
  13.     cin>>school;
  14.     cout<<"我讀"<<school<<endl;  
  15.     cout<<"我今年"<<age<<"歲"<<endl;  
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表