当前位置:   article > 正文

中国电子学会2021年09月C++语言等级考试试卷一级真题及(参考答案)_电子学会c++真题

电子学会c++真题

一,
在这里插入图片描述
解析:主要考察变量类型的转换。

#include<iostream>
using namespace std;

int main()
{
	int a,b;
	cin>>a>>b;
	cout<<a*(long long)b;
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

二,
在这里插入图片描述
解析:输入输出

#include<iostream>
using namespace std;

int main()
{
	int a;
	long long b;
	cin>>a>>b;
	cout<<b<<" "<<a;
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

三,
在这里插入图片描述

#include<iostream>
using namespace std;

int main()
{
	char c;
	cin>>c;
	if(c>='0' && c<='9'){
		cout<<"yes";
	}else{
		cout<<"no";
	}
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

三,
在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
	int n,k,inp,temp;
	long long s=0;
	cin>>n>>k;
	for(int i=1;i<=n;i++){
		cin>>inp;
		temp = inp;
		while(inp>0){
			if(inp%10==k){
				s+=temp;
				break;
			}
			inp = inp/10;
		}
		
	}
	cout<<s;
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

五,
在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
	int a,index;
	cin>>a;
	for(int i=a-1;i>1;i--){
		index=0;
		for(int j=2;j<i;j++){
			if(i%j==0){
				index = 1;
				break;
			}
		}
		if(index==0){
			cout<<i;
			break;
		}
	}
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/169696
推荐阅读
相关标签
  

闽ICP备14008679号