博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.Net基础篇_学习笔记_第六天_for循环语法_正序输出和倒序输出
阅读量:4970 次
发布时间:2019-06-12

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

for TAB  和 forr TAB

 

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace 第六天_do_while循环 8 { 9     class Program10     {11         static void Main(string[] args)12         {13             for (int i = 100; i <= 999; i++)14             {15 16                 int bai = i/100;17                 int shi = i%100/10;18                 int ge = i%10;19                 if (bai*bai*bai+shi*shi*shi+ge*ge*ge==i)20                 {21                     Console.WriteLine("水仙花数有{0}",i);22                 }23             }24             Console.ReadKey();25         }26     }27 }

 

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace 第六天_do_while循环 8 { 9     class Program10     {11         static void Main(string[] args)12         {13             int sum = 0;14             int n = 100;15             for (int i = 1; i <=n; i+=2)16             {17                 sum += i;18             }19             Console.WriteLine(sum);20             Console.ReadKey();21         }22     }

100以内所有偶数的和,所有奇数的和,所有整数的和......

转载于:https://www.cnblogs.com/NBOWeb/p/7210867.html

你可能感兴趣的文章
数据类型(一)
查看>>
输入法评价
查看>>
阅读《实例化需求》7–9章有感
查看>>
用 epoll 写一个socket双工通信
查看>>
搭建maven web项目并配置quartz定时任务【业务:对比数据变化内容】 历程
查看>>
边工作边刷题:70天一遍leetcode: day 85-4
查看>>
Java线程:线程的同步与锁
查看>>
第三次实验报告
查看>>
Python中-eval的使用
查看>>
本月题量 180122晚-180222午
查看>>
.Net core 下的ConfigurationManager类正确引用方法
查看>>
selerium配置环境:安装Chromedriver
查看>>
格言?
查看>>
linux ssh_config和sshd_config配置文件
查看>>
【夯实PHP基础】PHP 面向对象
查看>>
在shell script中进行数值运算的两种方法
查看>>
Web - LNMP
查看>>
DevOps - 版本控制 - Git
查看>>
多应用单账户登录体系梳理
查看>>
Web开发者应知的URL编码知识
查看>>