1373 比较奇数偶数个数
第一行输入一个数,为n,第二行输入n个数,这n个数中,如果偶数比奇数多,输出NO,否则输出YES。
#include <iostream>
#include<algorithm>
#include<string>
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
int temp, n;
cin >> n;
int j = 0, k = 0;
for (int i = 0; i < n; i++)
{
cin >> temp;
if (temp % 2 == 0)
j++;
else
k++;
}
if (j > k)
cout << "NO" << endl;
else
cout << "YES" << endl;
return 0;
}
1374 找最小数
第一行输入一个数n,1 <= n <= 1000,下面输入n行数据,每一行有两个数,分别是x y。输出一组x y,该组数据是所有数据中x最小,且在x相等的情况下y最小的。
输入输出格式
#include <iostream>
#include<algorithm>
#include<string>
#include<iomanip>
#include<cmath>
using namespace std;
struct CM {
int x, y;
}cm[1000];
bool cmp(

本文介绍了四个编程题目:1373题要求比较输入数列中奇偶数的个数;1374题需找出x值最小且对应y值也最小的数对;1375题要求列出所有个位为1的素数;1376题涉及5x5矩阵按指定方式翻转。这些题目考察了基础的数学逻辑和编程技巧。
最低0.47元/天 解锁文章
1821

被折叠的 条评论
为什么被折叠?



