返回列表 發帖
回復 3# 陳詩凱


   #include<iostream>
using namespace std;
int main()
{
  int score;
  cout<<"請輸入你的分數:";
  cin>>score;
  if(score>=60)
  {
  cout<<"Ya!及格!";
  }else
  {
   cout<<"不及格!";
  }     
system("pause");
return 0;
}

TOP

返回列表