#include<iostream>
using namespace std;
int main()
{
int i,j;
for (i=0; i<=99; i++)
{
j=i*10+6;
if (j%3==0)
cout<<j<<'\t';
}
cout<<endl;
return 0;
}
程序填充题2
最新推荐文章于 2021-05-19 08:40:12 发布
#include<iostream>
using namespace std;
int main()
{
int i,j;
for (i=0; i<=99; i++)
{
j=i*10+6;
if (j%3==0)
cout<<j<<'\t';
}
cout<<endl;
return 0;
}