165-循环结构练习和函数练习
Posted wuxiaohui1983
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了165-循环结构练习和函数练习相关的知识,希望对你有一定的参考价值。
5,一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10次落地时,共经过多少米?第10次反弹多高?
float height = 100; float distance = 0; for (int i = 1; i <= 10; i++) { distance += height; height /= 2; } Console.WriteLine("经过了" + distance + "米,第10次反弹" + height / 2 + "米"); Console.ReadKey();
6,题目:求1+2!+3!+...+20!的和?
static int Factorial(int n) { int res = 1; for (int i = 1; i <= n; i++) { res *= i; } return res; } static void Main(string[] args) { int sum = 0; for (int i = 1; i <= 20; i++) { sum += Factorial(i); } Console.WriteLine(sum); Console.ReadKey(); }
以上是关于165-循环结构练习和函数练习的主要内容,如果未能解决你的问题,请参考以下文章