返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {   
  6.    
  7.     int score;
  8.     cout<<"請說出年齡:";
  9.     cin>>score;
  10.    
  11.     if(score>=100)
  12.         cout<<"走得愉快"<<endl;
  13.     else
  14.         cout<<"祝你長壽"<<endl;  
  15.     system("pause");
  16.     return 0;      
  17. }      
複製代碼

TOP

返回列表