大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
我这边运行没错误啊,如下图:
创新互联是一家专注网站建设、网络营销策划、微信小程序开发、电子商务建设、网络推广、移动互联开发、研究、服务为一体的技术型公司。公司成立10余年以来,已经为超过千家成都会所设计各业的企业公司提供互联网服务。现在,服务的超过千家客户与我们一路同行,见证我们的成长;未来,我们一起分享成功的喜悦。
不知道你的错误是什么,能不能贴出来。
#includeiostream.h
void maxscore(int n)
{
int a[n];
int i,max,score,t;
cout"please input the score of this class:\n";
for(i=0;in;i++)/*输入他们各自的成绩*/
{cinscore;
a[i]=score;}
max=a[0];
for(i=1;in;i++)/*求最高成绩并输出*/
{if(a[i]max)
{t=max;
max=a[i];
a[i]=t;}}
cout"the higeist score of this clss is: "maxendl;
}
int main()
{
int n;
cout"please input the number of people:";
cinn;/*输入这个班有多少人*/
cout"there are "n"people in this class:\n";
maxscore(n);
return 0;
}
#includestdio。h
intmain()
{
intmax,min,score;
doubleavg=0;
scanf("%d",score);
max=min=score;
avg+=score;
for(inti=0;i29;i++)
{
scanf("%d",score);
if(scoremax)max=score;
if(scoremin)min=score;
avg+=score;
}
avg=avg/30;
printf("最高分max=%d,最低分min=%d,平均分avg=%lf\n",max,min,avg);
return0;
}
文件输入/输出
在C语言中,输入和输出是经由标准库中的一组函数来实现的。在ANSI C中,这些函数被定义在头文件;中。
标准输入/输出
有三个标准输入/输出是标准I/O库预先定义的:
stdin标准输入
stdout标准输出
stderr输入输出错误
以上内容参考:百度百科-c语言