摘要:
How to download vip songs In our life, music is associated with us closely. However, sometimes we will find our favourite song needs vip, which causes 阅读全文
摘要:
基本类型 目前讨论了int和float,以及_Bool 整数类型 有符号整数和无符号整数,目前可以回避无符号整数 6种基本组合类型: short int unsigned short int int unsigned int long unsigned long int 注: 说明符的顺序不影响。u 阅读全文
摘要:
循环 while语句 int i = 10; while (i > 0) { printf("hello\n"); i--; } /** 如何判断循环次数 i = 10可以执行 i = 1 可以执行 i = 0 不执行 1-10共执行10次 */ 无限循环 while (1) do语句 至少执行一次 阅读全文