无难点
int main()
{
int i = 1;
while (i <= 100)
{
if (i % 3 == 0)
{
printf("%d ", i);
}
i++;
}
return 0;
}
微信扫一扫
无难点
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
int main()
{
int i = 1;
while (i <= 100)
{
if (i % 3 == 0)
{
printf("%d ", i);
}
i++;
}
return 0;
}
相关推荐