C#求 100中不能被7整除的数输出
问题描述:
C#求 100中不能被7整除的数输出
答
for (int i = 1; i {
if (i%7!=0)
{
Response.Write(i.ToString()+" ");
}
}