根据下面的流程图,采用C语言写出程序。
【正确答案】
采用C语言实现:
#include<stdio.h>
main()
{
int n;
for(n=1;n<=12;n++)
if(n%4==0)
printf("n=%d",n);
}
【答案解析】
提交答案
关闭