博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习总结 for循环语句的应用
阅读量:5095 次
发布时间:2019-06-13

本文共 1086 字,大约阅读时间需要 3 分钟。

for(初始值;条件表达式;状态改变)

\n 表示换行   \ttab键   \\写出一个斜杠

例题解释

// 输出一个数,打印一到n出来

int n = int.Parse(Console.ReadLine());

for (int i = 1; i <= n; i++)

{
Console.WriteLine(i);
}

 

 

//求一到100内所有偶数的和

int a = 0;

for (int i = 0; i <= 100; i =i+2 )
{
a = a + i;
}

Console.Write (a );

  第二种方法:

int a = int.Parse(Console.ReadLine());

for (int i = 1; i <= 100; i++)
{
if (i % 2 == 0)
{
a = a + i;
}
}
Console.WriteLine(a);

 

输入一个数字判断是不是质数

Console.Write("请输入一个数字:");

int s = int.Parse(Console.ReadLine());

int count = 0;

for (int i = 1; i <= s; i++)
{
if (s % i == 0)
{
count++;
}
}
if (count == 2)
{
Console.WriteLine("这个数是质数。");
}
else
{
Console.WriteLine("这个数不是质数。");
}

 

100以内所有的质数是多少

for (int a = 1; a <= 100; a++)

{
int count = 0;
for (int i = 1; i <= a; i++)
{
if (a % i == 0)
{
count++;
}
}

if (count == 2)

{
Console.WriteLine(a);
}
}
Console.ReadLine();

 

 

 100以内所有质数和为多少

int b = 0;

for (int a = 1; a <= 100; a++)
{
int count = 0;
for (int i = 1; i <= a; i++)
{
if (a % i == 0)
{
count++;
}
}
if (count == 2)
{
b += a;
}

}

Console.WriteLine(b);
Console.ReadLine();

 

 

转载于:https://www.cnblogs.com/zhoudi/p/5325895.html

你可能感兴趣的文章
WPF动画设置1(转)
查看>>
backgound-attachment属性学习
查看>>
个人作业——关于K米的产品案例分析
查看>>
基于node/mongo的App Docker化测试环境搭建
查看>>
java web 中base64传输的坑
查看>>
java 中的线程(一)
查看>>
秒杀9种排序算法(JavaScript版)
查看>>
素数判断BFS之“Prime Path”
查看>>
Activiti入门 -- 环境搭建和核心API简介
查看>>
struts.convention.classes.reload配置为true,tomcat启动报错
查看>>
IOS push消息的数字不减少的问题
查看>>
mysql报错Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage
查看>>
MySQL的并行复制多线程复制MTS(Multi-Threaded Slaves)
查看>>
Django中间件
查看>>
Hdfs数据备份
查看>>
xcode 5.1安装vvdocument
查看>>
log4j:WARN No appenders could be found for logger
查看>>
Google翻译
查看>>
盖得化工--采集所有公司详细信息
查看>>
Logistic Ordinal Regression
查看>>