摘要:
7.11.8 / retire.c / include int main(void) { int age = 60; while (++age 阅读全文
posted @ 2019-04-21 21:19
viviLy
阅读(99)
评论(0)
推荐(0)
摘要:
左后缀中,当age=64执行完循环体时,到达测试条件age++ 阅读全文
posted @ 2019-04-21 20:58
viviLy
阅读(262)
评论(2)
推荐(0)
摘要:
7.11.7 include int main(void) { char ch; int lc = 0; // 统计小写字母 int uc = 0; // 统计大写字母 int oc = 0; // 统计其他字母 while ((ch = getchar()) != ' ') { if (( ch 阅读全文
posted @ 2019-04-21 20:34
viviLy
阅读(118)
评论(0)
推荐(0)