主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
hellokitty1679
2024年9月5日 21:25
比较奇偶数个数 题解:C
P1373
回复 0
|
赞 0
|
浏览 955
#include<stdio.h> int main(void) { int N,m; while(scanf("%d",&N)!=EOF) { int even=0,odd=0; for(int i=0;i<N;i++) &n...
青春渲染童年
2024年5月26日 20:18
比较奇偶数个数 题解:简单思路
P1373
回复 0
|
赞 2
|
浏览 398
比较简单的思路。 #include <iostream> using namespace std; int main() { int a = 0, countji = 0, countou = 0; //countji和countou是分别记录奇数和偶数的个数 int j = 0; ...
小王桐学
2024年2月14日 22:01
比较奇偶数个数 题解:C
P1373
回复 0
|
赞 0
|
浏览 764
#include <stdio.h> int main() { int n,even,odd,num; while(scanf("%d",&n) != EOF) { even = odd = 0; while(n) { scanf("%d",&num); if(num % 2 == 0) even++; else odd++; n--; } if(even > odd) printf("NO\n"); else printf("YES\n"); }...
活着的传奇
2023年8月21日 16:51
比较奇偶数个数 题解:
P1373
回复 0
|
赞 0
|
浏览 586
存入数组然后遍历计数就可以了,注意没有偶数和奇数相等的情况,要按照题目的要求写。 #include<bits/stdc++.h> using namespace std; int main(){ int n,b;int j=0;int o=0; while(scanf("%d",&n)!=EOF){ int a[n]; for(int i=0;i<n;i++){ cin>>b; a[i]=b; } for(int i=0;i<n;i++){ ...
kas
2022年3月16日 16:56
1373 比较奇偶数个数
P1373
回复 0
|
赞 0
|
浏览 4.3k
#include<iostream> using namespace std; int main() { int ans = 0,n,val; cin >> n; while(n--){ cin >> val; if(val % 2) ...
题目
比较奇偶数个数
题解数量
5
发布题解
热门题解
1
比较奇偶数个数 题解:简单思路
2
比较奇偶数个数 题解:
3
1373 比较奇偶数个数
4
比较奇偶数个数 题解:C
5
比较奇偶数个数 题解:C