#1645: OLE!!!!!!!!

Unknown User

d143. 11172 - Relational Operators -- UVa11172 | From: [61.58.142.37] | 發表日期 : 2009-03-29 11:13

#include <iostream>
using namespace std;
int main()
{
long long int i,a,b;
  { while(cin>>i)
    while(cin>>a>>b)
    {
    if(a<b)
    cout<<"<"<<endl;
    else if(b<a)
    cout<<">"<<endl;
    else
    cout<<"="<<endl;
    }
  }
system("pause");
return 0;
}

誰可以跟我講到底為什麼阿?

 
#1646: Re:OLE!!!!!!!!


morris1028 (碼畜)

學校 : 國立花蓮高級中學
編號 : 3529
來源 : [114.37.59.62]
最後登入時間 :
2021-07-12 19:00:43
d143. 11172 - Relational Operators -- UVa11172 | From: [118.161.216.163] | 發表日期 : 2009-03-29 11:14

#include
using namespace std;
int main()
{
long long int i,a,b;
  { while(cin>>i)  /*把WHILE拆掉*/
    while(cin>>a>>b)
    {
    if(a    cout<<"<"<    else if(b    cout<<">"<    else
    cout<<"="<    }
  }
system("pause");
return 0;
}

誰可以跟我講到底為什麼阿?


 
#1648: Re:OLE!!!!!!!!

Unknown User

d143. 11172 - Relational Operators -- UVa11172 | From: [61.58.142.37] | 發表日期 : 2009-03-29 11:33

#include
using namespace std;
int main()
{
long long int i,a,b;
  { while(cin>>i)  /*把WHILE拆掉*/
    while(cin>>a>>b)
    {
    if(a    cout<<"<"<    else if(b    cout<<">"<    else
    cout<<"="<    }
  }
system("pause");
return 0;
}

誰可以跟我講到底為什麼阿?


這樣好像也不可以吧..
 
#1649: Re:OLE!!!!!!!!


morris1028 (碼畜)

學校 : 國立花蓮高級中學
編號 : 3529
來源 : [114.37.59.62]
最後登入時間 :
2021-07-12 19:00:43
d143. 11172 - Relational Operators -- UVa11172 | From: [118.161.216.163] | 發表日期 : 2009-03-29 11:37

#include
using namespace std;
int main()
{
long long int i,a,b;
   scanf("%lld",&i); /*把WHILE拆掉*/
    while(i--)/*跑i次*/
    {

   scanf("%lld %lld",&a,&b);   

    if(a    cout<<"<"<    else if(b    cout<<">"<    else
    cout<<"="<    }
 
system("pause");
return 0;
}

誰可以跟我講到底為什麼阿?


這樣好像也不可以吧..
抱歉沒看清楚 我只會用c的 我用scanf修= =

 
ZeroJudge Forum