循环练习
Posted 宋小尧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了循环练习相关的知识,希望对你有一定的参考价值。
练习1
请输入一个字母例如:f,则输出abcdefedcba
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 练习1 { class Program { static void Main(string[] args) { Console.Write("请输入一个字母:"); char a = Convert.ToChar(Console.ReadLine()); for (char b = \'a\'; b != a; b++) { Console.Write(b + ","); } char c = a; for (int i = 1; i <= 26; i++) { Console.Write(c + ","); if (c == \'a\') { break; } c--; } Console.ReadLine(); } } }
练习2
请输入三个0-20之间的正整数
然后求和
输入错误不计
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 练习9 { class Program { static void Main(string[] args) { int b = 0; for (; ; ) { Console.Write("请输入一个正整数(0-20)"); int i = Convert.ToInt32(Console.ReadLine()); if (i < 0 || i > 20) { Console.Write("输入错误!"); } else { int sum = 0; for (int a = 0; a <= i; a++) { sum += a; } Console.Write(sum); if (b == 2) { break; } b++; } } Console.ReadLine(); } } }
以上是关于循环练习的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段