摘要:
#include <stdio.h> int main() { int x=0; if (x==0) { printf("x为假\n"); } else { printf("x为真\n"); } return 0; } if (x==0)也可以写成if(!x),因为x的值为0即为假,所以!x为真,计 阅读全文
posted @ 2016-06-24 18:12
Howareyou?
阅读(175)
评论(0)
推荐(0)
浙公网安备 33010602011771号