摘要:
/*比较运算符: 1.> >= < <= 2.== != 通常情况都是用判断语句中,判断语句出现在if圆括号内,还有循环的圆括号内。 逻辑运算符: 1.! 非真为假!1 !5 !-1 !(9>8) 非假为真 !0 !(8>9) 2.&& 0&&0=0 0&&1=0 1&&0=0 1&&1=1 只要有 阅读全文
摘要:
/* Note:Your choice is C IDE */#include "stdio.h"void main(){ int result,i; result=1; printf("请输入一个数(求他的阶乘):"); scanf("%d",&i); for(;i>=1;i--) { resul 阅读全文
摘要:
/* Note:Your choice is C IDE */#include "stdio.h"void main(){ int x=-1; if(x 1) { printf("真"); printf("真"); printf("真"); printf("真"); } else { printf( 阅读全文