- 1、本文档共40页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
初学C实验报告题目及答案
计算机程序设计与问题求解
(C++)
实验报告
班 级 **00360*
学 号 **00360***
姓 名 路边葱子
指导教师
二O一二年三月
实验一
1.将双撇号中的内容修改为汉字输出。
2.将计算改为乘和除运算(*,/),重点掌握整除取值规律
3.实现三个数排序,用不同顺序和不同类型的数输入,测试程序的正确性。
程序代码:
1、
#include iostream.h
int main()
{
cout 这 是;
cout 一个 C++;
cout 程序 endl;
return 0;
}
2、乘法
#include iostream.h
void main()
{ int a,b,c;
coutinput a和b两个整数的值:;
cinab;
c=a*b;
couta*b=a*bendl;
couta*b=cendl;
}
除法
#include iostream.h
void main()
{ int a,b,c;
coutinput a和b两个整数的值:;
cinab;
c=a/b;
couta/b=a/bendl;
couta/b=cendl;
}
3、
#include iostream.h
void main()
{ int x,y,z,t;
coutinput x,y,z:;
cinxyz;
if (x=y)
{t=x;x=y;y=t;}
if (y=z)
{ t=y;y=z;z=t;}
if (xy)
{t=x;x=y;y=t;}
coutx,y,zendl;
}
实验二
1. 求C++语言提供的随机函数的最大值和最小值
⑴用自己输入的种子产生100000个随机数并求最大值和最小值;
⑵将随机数种子改为用系统时间time实现
⑶模拟100次掷钱币的过程,输出“f”表示此次钱币正面朝上,输出“b”表示此次钱币反面朝上,并统计这100次中,共有多少次正面朝上,多少次反面朝上。1.(1)
#include iostream.h
#include stdlib.h
void main()
{ int seed;
cout请输入种子:endl;
cinseed;
srand(seed);
int i,temp,max,min,a(0),b(32767);
for(i=1;i=100000;i++)
{ temp=rand();
couttemp ;
max=(tempa?temp:a);
a=max;
min=(tempb?temp:b);
b=min;
}
coutendl;
coutmax=maxendl;
coutmin=minendl;
}
1.(2)
#include iostream.h
#include time.h
#include stdlib.h
void main()
{ int temp,max,min,a(0),b(32767);
srand(time(NULL));
for(int i=1;i=100000;i++)
{ temp=rand();
couttemp ;
max=(tempa?temp:a);
a=max;
min=(tempb?temp:b);
b=min;
}
coutmax=maxendl;
coutmin=minendl;
}
1.(3)
#include iostream.h
#include time.h
#include stdlib.h
void main()
{
int fac(0),back(0),temp;
srand(time(NULL));
for(int i=1;i=100;i++)
{ temp=rand();
if(temp32767/2){coutf ;fac++;}
else {coutb ;back++;}
}
coutendl钱币正面朝上的次数为:facendl;
coutendl钱币反面朝上的次数为:backendl;
}
实验三
1.求水仙花数
153= 13+53+33
2.输入两个正整数m和n,求其最大公约数与最小公倍数
m=18 n=27 最大公约数为9
文档评论(0)