#9216: WA (line:1) 輸出短少


a55046535 (hom)

學校 : 不指定學校
編號 : 26684
來源 : [27.105.253.82]
最後登入時間 :
2016-05-22 22:16:07
a244. 新手訓練 ~ for + if -- 新手訓練系列 ~ 1 | From: [219.85.167.180] | 發表日期 : 2014-09-21 11:29

#include<iostream>
using namespace std;
int main()
{
  int a,b,c,total,d;
  total=0;
  cin >> d;
  if(d >= 1 && d <= 4){
       for (int i=0; i < d ; i++){
           cin >> a >> b >> c;
               if(a == 1){
                   total = b+c;
                         cout << total;
                  }else if(a == 2){
                        total = b-c;
                        cout << total; 
                  }else if(a == 3){
                        total = b*c;
                        cout << total;
                  }else{
                        total = b/c;
                        cout << total;
                  }
                  cout <<endl ;
               }
           }

  //system("pause");
  return 0;
 }
 
各位大大,我想請問一下
輸出短少是甚麼意思?? 
 
#9218: Re:WA (line:1) 輸出短少


anandrewboy70900 (ShowTsai)

學校 : 國立中央大學
編號 : 27736
來源 : [203.204.218.144]
最後登入時間 :
2024-10-11 16:21:37
a244. 新手訓練 ~ for + if -- 新手訓練系列 ~ 1 | From: [140.115.201.5] | 發表日期 : 2014-09-21 16:54

要重複輸入喔~

while(cin >> d)

{

}

 
ZeroJudge Forum