求100多行的C语言源代码,最好有流程图,我初学者,什么都不会

 我来答
k胀熊猫
2012-07-21 · TA获得超过748个赞
知道小有建树答主
回答量:351
采纳率:0%
帮助的人:309万
展开全部
……啥代码都行》? 随便贴了个
#include <stdio.h>
#include <math.h>
#include <conio.h>
#include <iostream>
using namespace std;
class coordinate
{
public:
double x;
double y;
};

coordinate function(int n, coordinate *cor)
{
coordinate result;
int i;
double sumy=0, sumx=0, sumx2=0, sumxy=0;

for(i=0; i<n; i++)
{
sumy += cor[i].y;
}
for(i=0; i<n; i++)
{
sumx += cor[i].x;
}
for(i=0; i<n; i++)
{
sumxy += cor[i].y * cor[i].x;
}
for(i=0; i<n; i++)
{
sumx2 += cor[i].x * cor[i].x;
}
result.x = (n*sumxy - sumx*sumy) / (n*sumx2 - sumx*sumx);
result.y = (sumxy*sumx - sumy*sumx2) / (sumx*sumx - n*sumx2);
return result;
}
int main ()
{
cout<<"Please input the 9 y coordinate"<<endl;
coordinate * cor = new coordinate [9];
coordinate result;
for(int i=0; i<9; i++)
{
cin >> cor[i].y;
}
for(i=0; i<9; i++)
{
cor[i].x = (double)i;
}
result = function(9, cor);
cout<< "最小二乘斜率为:"<<result.x<<endl;
cout<< "最小二乘截距为:"<<result.y<<endl;
return 0;
}
fzjcu
2012-06-24 · 超过11用户采纳过TA的回答
知道答主
回答量:67
采纳率:0%
帮助的人:32万
展开全部
你有病?题目都没有
追问
你才有病,没题目,想写什么写什么
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hawk9981
2012-06-22
知道答主
回答量:11
采纳率:0%
帮助的人:6.7万
展开全部
此处省略流程图
追问
如果我在作业上可以这么写就好了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9e6d11eef
2012-06-22 · TA获得超过1173个赞
知道小有建树答主
回答量:723
采纳率:0%
帮助的人:302万
展开全部
此处省略100行
追问
如果我在交的作业上也可以这么写就好了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式