摘要:
001、if 结构 002、if else结构 003、if else if elseif else结构 004、条件判断结构 005、switch结构 。 阅读全文
摘要:
001、for [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序,for循环语句 #include <stdio.h> int main(void) { int i; for(i = 1; i <= 5; i++) { pr 阅读全文
摘要:
001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c // 测试程序 #include <stdio.h> int main(void) { int i = 10; printf("i1 = %d\n", i); printf("i2 阅读全文