#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;
}
誰可以跟我講到底為什麼阿?
#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;
}
誰可以跟我講到底為什麼阿?
#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;
}
誰可以跟我講到底為什麼阿?
#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;
}
誰可以跟我講到底為什麼阿?