c how to program 习题3.22

发布于2020-05-05 779 热度

运行结果:

C语言代码:

/* c how to program 习题3.22 */
#include <stdio.h>
#include <stdlib.h>

int main()
{
    //分别定义变量
    int number = 0;
    while(number < 10){
        printf("%d   ", ++number);
    }
    return 0;
}

记录工作,记录学习,分享知识,分享经验……