2017.7.29

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.7.29相关的知识,希望对你有一定的参考价值。

第一题修改后答案

#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b;
c=a+b;//a,b分别为男,女生人数,c为总人数
if(c<10)
cout<<"water"<<endl;
if(c>10)
{
if(a>b)
cout<<"tree"<<endl;
else cout<<"tea"<<endl;
}
return 0;
}

第三题修改答案

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
freopen("snail.in","r",stdin);
freopen("snail.out","w",stdout);
int D,a,b,x=0;//x是计数器
cin>>D>>a>>b;
if(a<=b&&D>a)
cout<<"bye bye"<<endl;
else
{
for(;;)
{
x++;
D-=a;
if(D<=0)
break;
D+=b;
}
cout<<x<<endl;
}
return 0;
}

//这次测试主要失误在考虑问题不全面。以后关于细节方面的问题,一定要多加注意。

以上是关于2017.7.29的主要内容,如果未能解决你的问题,请参考以下文章

第三组冲刺会议 2017.7.29

2017.7.29

2017--7--29 考试分析

二分暑假专题 训练记录 2017-7-29

第五组第十六次冲刺例会纪要 2017/7/29

第二组项目冲刺(Release版本)第五次每日例会 2017/7/29