注意:此页面搜索的是所有试题
题目内容
(华北水利水电大学C 语言程序设计)
读下列程序,写出程序的运行结果。 #include int main() { int a=2,b=3,c; c=a; if(a>b) c=1; else if(a==b) c=0; else c=-1; printf("%d\n",c); return 0; } 输出:
参考答案