标签:style blog http color sp for strong on 文件
for(初始条件;比较;状态改变 )
{
循环体
}
//打印100遍helloword
for(int i=0;i<100,i++)
{
console.writeline("helloword");
}
////求1-100的和
int s = 0;
for(int i=1;i<=100;i++)
{
s = s + i;
}
Console.WriteLine(s);
Console.ReadLine();
//100以内所有与7相关的数和,奇数和,偶数和
int s = 0;
for (int i = 1; i <= 100; i++)
{
if ((i % 7 == 0) || (i % 10 == 7) || (i / 10 == 7))
{
s = s + i;
}
}
Console.WriteLine(s);
Console.ReadLine();
//100以内的所有质数和
int sum = 0;
for (int i = 2; i <=100; i++)
{
int a = 0;
for (int j = 1; j <=i; j++)
{
if (i % j == 0)//如果i能被它本身和1以外的数整除,那么他就不是质数
{
a++;
}
}
if (a == 2) //能被整除的数只有两个,即为质数
{
sum = sum + i;
Console.Write(i + "\t");
}
}
Console.Write("和"+sum);
Console.ReadLine();
//打印☆,排列成图形
标签:style blog http color sp for strong on 文件
原文地址:http://www.cnblogs.com/jintuo/p/4159783.html