摘要: 1 # include<stdio.h> 2 3 int main() 4 5 { 6 int a,b; 7 printf("Please enter two values for a and b:"); 8 scanf("%d,%d",&a,&b); 9 a>b ? printf("a is bigger than b!\n") : printf("a isn't bigger than b!\n");10 return (0);11 } 阅读全文
posted @ 2013-04-28 21:56 吾爱扣扣 阅读(112) 评论(0) 推荐(0)