摘要: 例一:#include "stdio.h"int main(){ int i=0; if(i)printf("hi"); if(!i)printf("hi"); return 0;}c语言中0就是false,就不需要打印里面的语句了。结果是:hi 阅读全文
posted @ 2014-11-13 16:01 kin2321 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 例一:public class Inc { public static void main(String[] args) { Inc inc=new Inc(); int i=5; inc.fermin(i); i=i++;//temp... 阅读全文
posted @ 2014-11-13 15:56 kin2321 阅读(145) 评论(0) 推荐(0) 编辑