c语言一球100米自由落下编程,C#两个很简单的编程问题一球从100米高度自由落下1.一球从100米高度自由落下,每次落地后反跳回原高度的一半,再落下,求它在第10次落地时,共经过多少米?第10次反弹...

第一题using System;

using System.Collections.Generic;

using System.Text;

namespace IronBall

{

public class IronBall

{

public double hight=0;

//h是高度,count是反弹次数

public double getDistance(double h,int count)

{

double dis = h;

this.hight = h;

for (int i = 0; i 

{

hight = hight / 2;

dis += 2*hight;

}

return dis;

}

}

class Program

{

static void Main(string[] args)

{

IronBall rb = new IronBall();

Console.WriteLine("总距离"+rb.getDistance(100,10));

Console.WriteLine("最后一次反弹高度" +rb.hight/2);

Console.ReadLine();

}

}

}

第二题:using System;

using System.Collections.Generic;

using System.Collections;

using System.Text;

namespace ConsoleApplication3

{

class Program

{

public class PointsStat

{

ArrayList points = new ArrayList();

public void addPoint(double p)

{

points.Add(p);

}

public int plusZero()

{

int count = 0;

foreach (double p in points)

{

if (p > 0)

count++;

}

return count;

}

public int minusZero()

{

int count = 0;

foreach (double p in points)

{

if (p 

count++;

}

return count;

}

public int zero()

{

int count = 0;

foreach (double p in points)

{

if (p==0)

count++;

}

return count;

}

}

static void Main(string[] args)

{

PointsStat ps1 = new PointsStat();

for (int i = 0; i 

{

string s = Console.ReadLine();

if (s != "")

{

double d = double.Parse(s);

ps1.addPoint(d);

}

else

i--;

}

Console.WriteLine("\n正分:" + ps1.plusZero());

Console.WriteLine("\n负分数:" + ps1.minusZero());

Console.WriteLine("\n零分:" + ps1.zero());

Console.ReadLine();

}

}

}

解析看不懂?求助智能家教解答查看解答

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值