博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++程序设计原理与实践 第四章部分答案
阅读量:4931 次
发布时间:2019-06-11

本文共 2625 字,大约阅读时间需要 8 分钟。

1 #include 
2 using namespace std; 3 4 int main() 5 { 6 int a=1,b=100; 7 int f=1; 8 char c=0; 9 10 while(f<=7 && (b-a)>=1)11 {12 cout<<"你的数小等于"<<(a+b)/2<<"吗?(y/n)";13 cin>>c;14 if(c=='n')15 a=(a+b)/2+1;16 else17 b=(a+b)/2;18 f++;19 }20 cout<<(a+b)/2<
第4题
1 #include "../../st.h" 2  3 int main() 4 { 5     int sum=0; 6     int i=1; 7     while(sum<1000) 8     { 9         int s=1;10         for(int n=1;n
第8题
1 #include "../../st.h" 2 //要得到自然数n以内的全部素数,必须把不大于的所有素数的倍数剔除,剩下的就是素数。 3 const int  MAX=101; 4  5 int main() 6 { 7     int all[MAX]; 8     int N,i,j,s; 9    // memset(all,1,sizeof(all));10     for(i=0;i
>N)18 {19 for(i=2;i<=N;i++)20 if(all[i])21 cout<
<<" ";22 cout<
第13题
1 #include "../../st.h" 2 //学到后面这些都是小case= = 3 int main() 4 { 5     vector
all; 6 vector
s; 7 vector
n; 8 int t; 9 while(cin>>t)10 all.push_back(t);11 sort(all.begin(),all.end());12 t=all[0];13 int k=0;14 for(int i=0;i
第16题
1 #include "../../st.h" 2  3 int main() 4 { 5     vector
names; 6 vector
scores; 7 string t; 8 double n; 9 int i;10 while(1)11 {12 cout<<"input name: ";13 cin>>t;14 15 if(t=="no"){16 cin>>t;17 break;18 }19 for(i=0;i
>n;27 scores.push_back(n);28 29 }30 for(i=0;i
>t;36 int f=0;37 for(i=0;i
>n;49 f=0;50 for(i=0;i
第19题
1 //第六章习题4  一个vector取代两个vector 2 #include "../../st.h" 3  4 class Name_value{ 5 public: 6     string name; 7     double val; 8  9     Name_value(string s,double d);10 };11 12 Name_value::Name_value(string s,double d)13 {14     name=s;15     val=d;16 }17 18 int main()19 {20     vector
nv;21 string s;22 double d;23 int i;24 while(1)25 {26 cout<<"input name: ";27 cin>>s;28 29 if(s=="no")30 {31 cin>>s;32 break;33 }34 for(i=0;i
>d;42 Name_value nv1(s,d);43 nv.push_back(nv1);44 }45 for(i=0;i
>s;51 int f=0;52 for(i=0;i
>d;64 f=0;65 for(i=0;i
第19题改

简单练习

总的来说  这一章是很容易的  理解了就OK

转载于:https://www.cnblogs.com/yueba/p/4088049.html

你可能感兴趣的文章
自动收缩的菜单
查看>>
【BZOJ3678】Wangxz和OJ
查看>>
修改SQL Server 中数据库的Collation
查看>>
ComponentOne FlexGrid for WinForms 中文版快速入门(4)--设置单元格格式
查看>>
spring boot升级到2.0.0.M7后报错ConverterNotFoundException for java.time.Duration的解决方案...
查看>>
云计算的概念
查看>>
iOS三方—SDWebImage的使用
查看>>
两种方法使vue实现jQuery调用
查看>>
applicatinContext-activiti.xml
查看>>
从首页问答标题到问答详情页
查看>>
ABAP ALV函数参数说明
查看>>
实验四
查看>>
【设计模式】桥接模式
查看>>
51NOD 算法马拉松12
查看>>
Appium python unittest pageobject如何实现加载多个case
查看>>
Yaf--个人封装yaf的框架+swoole+elasticsearch(Window+linux版)
查看>>
Java中的try catch finaly先后调用顺序
查看>>
使用java列举所有给定数组中和为定值的组合
查看>>
hat linux下vnc的安装
查看>>
Perl Nmap处理脚本
查看>>