标签:blog io os for sp 2014 log as ios
#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;
}
标签:blog io os for sp 2014 log as ios
原文地址:http://blog.csdn.net/liuyuyuan001/article/details/40593659