返回列表 發帖
回復 4# 洪咨伃


    #include<iostream>
using namespace std;
int main()
{
  int score;
  cout<<"請輸入你的分數:";
  cin>>score;
  if(score>=60)
  {
  cout<<"你好棒!過關了!";
  }else
  {
   cout<<"你是腦殘嗎?還是是智障啊?不及格!要被打屁股了!哈哈哈!";
  }     
system("pause");
return 0;
}

TOP

返回列表