- 1、本文档共25页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
扬州大学C语言上机作业19整理汇总,二级c语言上机题库,c语言上机题库,二级c语言上机软件,c语言上机实验报告,c语言上机考试题库,c语言上机实验答案,浙大c语言上机答案,c语言上机练习题,c语言上机实验
答案仅供参考
实验一
4.设计main函数实现从键盘上输入两个整型变量a、b的值,交换它们的值并输出。#includestdio.hvoid main(){int a,b,c;printf(enter first integer :? );scanf(%d,a);printf(enter second integer :?? );scanf(%d,b);c=a;a=b;b=c;printf(%d,%d\n,a,b);getch();}
5.设计main函数实现从键盘上输入两个整型变量a、b的值,并将b的值加入到a中,输出a的值。
? #includestdio.hvoid main(){int a,b,c;printf(enter first integer :? );scanf(%d,a);printf(enter second integer :?? );scanf(%d,b);c=a+b;a=c;printf(a=%d,b=%d\n,a,b);getch();}
6.从键盘输入整数x的值,根据公式y=x3+3x2+x-10求y的值,输出x和y的值。
#includestdio.hvoid main(){int x,y;printf(enter first integer :? );scanf(%d,x);y=x*x*x+3*x*x+x-10;printf(x=%d,y=%d\n,x,y);getch();}
实验二
编写程序,从键盘上输入一个整数(例如560)表示分钟,将其换算成用小时和分钟表示,然后输出至屏幕。
#include stdio.hvoid main(){? int a,b,hour,min;? printf(enter first integer :? );? scanf(%d,a);? b=60;? hour=a/b;? min=a%b;? printf(hour=%d,min=%d\n,hour,min);???? getch();???? }
编写程序,输入两个整数(例如1500和350),求出它们的商和余数并进行输出。
#include stdio.hvoid main(){?? int a,b,c,d;?? a=1500,b=350;?? c=a/b;?? d=a%b;?? printf(%d,%d,c,d);?? getch();?}?
3.编写程序,读入3个整数给分别变量a,b,c,然后将a,b,c的值输出到屏幕,再交换它们中的数值,把a中原来的值给b,把b中原来的值赋给c,把c中原来的值赋给a,然后再次输出a,b,c的值到屏幕。
#include stdio.h
void main()
{
int a,b,c,d;
printf(enter first integer : );
scanf(%d,a);
printf(enter second integer : );
scanf(%d,b);
printf(enter third integer : );
scanf(%d,c);
printf(a=%d,b=%d,c=%d\n,a,b,c);
d=c;
c=b;
b=a;
a=d;
printf(a=%d,b=%d,c=%d,a,b,c);
getch();
}
4.编写程序,读入3个双精度数,求它们的平均值输出到屏幕。
#include stdio.hvoid main(){??? double sum=0;??? double a,b,c,d;?printf(enter first integer :? );?scanf(%lf,a);?printf(enter second integer :?? );?scanf(%lf,b);?printf(enter third integer :? );?scanf(%lf,c);?sum=a+b+c;??? d=sum/3.0;??? printf(d=%lf,d);??? getch();??? }
5.下列程序中,要求main函数实现如下功能:从键盘上输入3个正整数,求出它们中的最大值。请完善程序,并在程序最后用注释的方式给出你的测试数据及在这组测试数据下的运行结果。
#include stdio.h
void main()
{
int a ,b ,c ,d ,max;
printf(“Enter three integers:”);
scanf(“%d%d%d”,a,b,c);
if(ab)
max=a;
else
max
文档评论(0)