摘要: 填空题 1. 给出下述程序的执行结果 #include <stdio.h> int a=4,b=5; int max(int a,int b) { int c; c=a>b?a:b; return c; } void main() { int a=6; printf("%d\n",max(a,b)) 阅读全文
posted @ 2018-03-07 09:26 竹夭公子 阅读(2704) 评论(0) 推荐(0) 编辑