#include<stdio.h>
#include<stdlib.h>
int main(){
int x,y;
scanf("%d %d",&x,&y);
if(x>y){printf(">");}
else if(x=y){printf("=");}
else if(x<y){printf("<");}
return 0;
}
這哪里錯了?
uj5u.com熱心網友回復:
else if(x=y)改成
else if(x==y)
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/95783.html
標籤:基礎類
上一篇:c++
