编写程序输出从数字3开始,并显示100以内3的倍数。
示例代码
#include <stdio.h>
int main()
{
int i;
for(i=3;i<=100;i=i+3)
{
printf("%d\\t",i);
}
putchar('\\n');
return(0);
}
执行上面示例代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75 78 81 84 87 90 93 96 99