华为机试(2018年5月3日)
2019-07-14 00:24发布
生成海报
第一题 :
C++程序:
#include
#include
using namespace std;
void main()
{
string str,s;
int flag[]={0,0,0,0,0,0,0,0,0,0};
while(cin>>str)
{
memset(flag,sizeof(flag),0);
for(int i=0;i 第二题 :
题目错了,在剩余25分钟左右又改正回来了,虽然比较坑,但这也间接考察了我们的临场应变能力。心得:1)不论题目是否正确,应该先把框架写出来。 2)相信自己,不要慌
#include
#include
using namespace std;
void main()
{
int temp=0;
int output=0;
while(cin>>temp)
{
if(temp<-40)
temp=-40;
if(temp>100)
temp=100;
if(temp>=-40&&temp<0)
{
output=34/3*(temp+150)-1000;
cout<
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮