·c#中怎么编写一个求任意两个整数之间所有数的平方和的程序?

 我来答
841536954
2008-10-27
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{

Console.Write("第四题 请输入任意两个整数,以便求这两个整数之间的所有整数的平方和");
int max;
int min;
int result = 0;
int f = Convert.ToInt16(Console.ReadLine());
int g = Convert.ToInt16(Console.ReadLine());
if (f > g)
max = f;
else
max = g;
if (f < g)
min = f;
else
min = g;

for (int q = min + 1; q < max; q++)
result += q * q;
Console.WriteLine(result);
Console.ReadLine();
//编写一个方法,用来求任意两个整数之间的所有数的和]

}
}
}
易材邱曼岚
2020-01-02 · TA获得超过3685个赞
知道小有建树答主
回答量:3086
采纳率:31%
帮助的人:182万
展开全部
public
int
Test(int
a,
int
b)
{
int
res
=
0;
for
(int
i=a;
i<b+1;i++)
{
res
+=
i*i;
}
return
res;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jiangyy1129
2008-10-26
知道答主
回答量:25
采纳率:0%
帮助的人:26.7万
展开全部
public int Test(int a, int b)
{
int res = 0;
for (int i=a; i<b+1;i++)
{
res += i*i;
}
return res;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式