易百教程

编写程序循环和输出

编写一个程序打印显示1119之间的值。用制表符字符\t分隔每个值。
使用<=符号进行结束循环的比较。循环完成后,通过添加最终换行符来清理显示。

实现代码示例

#include <stdio.h>

int main()
{
    int count;

    for(count=11; count<=19; count=count+1)
    {
        printf("%d\t",count);
    }
    putchar('\n');
    return(0);
}

执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
11      12      13      14      15      16      17      18      19