返回列表 發帖

自我介紹(二)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int age=0;  //變數的宣告  數字 int=0  初始值等於0   
  7.    string school;// string 字串(中文、英文、數字、符號....)
  8.    
  9.    cout << "請輸入你的年齡" << endl;  //字串 要用""包起來
  10.    cin >> age; //輸入  18  存進age  
  11.    cout << "請輸入你的學校" << endl; //endl = 換行
  12.    cin >> school;
  13.    cout << "我是大帥哥,今年" << age << "歲" << endl;  //字串 + 變數
  14.    cout << "我讀" << school << endl;
  15.    
  16.    system("pause");
  17.    return 0;
  18. }
複製代碼

返回列表