#5392: 幫幫我吧~~~


Vincent10 (135826)

學校 : 國立中央大學
編號 : 18974
來源 : [124.6.10.97]
最後登入時間 :
2023-04-21 01:01:51
a012. 10055 - Hashmat the Brave Warrior -- UVa10055 | From: [59.117.123.107] | 發表日期 : 2011-07-18 17:23

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
      long long int s,t,e;
      while(cin>>s>>t)
      {
      if(s>t)
      {
      e=s-t;
      cout<<e<<endl;
      }
      if(s<t)
      {
      e=t-s;
      cout<<e<<endl;
      }
      }
     system("PAUSE")
     return EXIT_SUCCESS;
}
到底是哪裡錯??

各位大大請幫幫我~~~

 
#5406: Re:幫幫我吧~~~


LinSCSISH (LinSC)

學校 : 徐匯中學
編號 : 2283
來源 : [118.167.138.231]
最後登入時間 :
2013-05-25 13:09:05
a012. 10055 - Hashmat the Brave Warrior -- UVa10055 | From: [111.251.20.27] | 發表日期 : 2011-07-20 19:44

#include
#include

using namespace std;

int main(int argc, char *argv[])
{
      long long int s,t,e;
      while(cin>>s>>t)
      {
      if(s>t)
      {
      e=s-t;
      cout<      }
      if(s      {
      e=t-s;
      cout<      }
      }
     system("PAUSE")
     return EXIT_SUCCESS;
}
到底是哪裡錯??

用if( s > t )

   { ... }

   else if( s < t )

   { ... }

   else

   { ... }

的結構 

各位大大請幫幫我~~~


 
ZeroJudge Forum