03.练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了03.练习相关的知识,希望对你有一定的参考价值。

  1. namespace _08.练习01
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. //练习1:循环录入5个人的年龄并计算平均年龄,如果录入的数据出现负数或大于100,
  8. //立即停止输入并报错
  9. int avg = 0; //用来保存平均成绩.
  10. int score = 0; //用来保存每一次输入的成绩
  11. bool b = true; //用来反馈错误
  12. for (int i = 1; i <=5; i++)
  13. {
  14. Console.WriteLine("请输入第{0}个人的年龄:",i);
  15. b=int.TryParse(Console.ReadLine(),out score);
  16. if (b == false)
  17. {
  18. Console.WriteLine("你输入的不是年龄");
  19. break;
  20. }
  21. else if(score>100||score<0)
  22. {
  23. Console.WriteLine("你的出入超出范围!");
  24. break;
  25. }
  26. }
  27. Console.ReadKey();
  28. }
  29. }
  30. }





以上是关于03.练习的主要内容,如果未能解决你的问题,请参考以下文章

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

屏幕旋转后Android片段重叠

csharp Epicor标准练习片段

golang 去练习片段

ktor HTTP API 练习

如何获取当前显示的片段?