返回列表 發帖
  1. #include<iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.   int age;

  6.   cout<<"請輸入你的年齡:";

  7.   cin>>age;

  8.   if(age>=18)

  9.   {

  10.   cout<<"你可以考駕照!";

  11.   }

  12.   else

  13.   {                     

  14.   cout<<"不然你就滾出駕訓班!";

  15.   }

  16.   cout<<endl;

  17.   system("pause");

  18.   return 0;

  19. }   
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int age;
  6.   cout<<"請輸入你的年齡:";
  7.   cin>>age;
  8.   if(age>=18)
  9.   {
  10.   cout<<"你可以考駕照!";
  11.   }
  12.   else
  13.   {                     
  14.   cout<<"不然你就滾出駕訓班!";
  15.   }
  16.   cout<<endl;
  17.   system("pause");
  18.   return 0;
  19. }   
複製代碼

TOP

返回列表