[Add] solved solutions

This commit is contained in:
2023-03-02 20:59:51 +07:00
parent 48081e0a05
commit 5499ac06c2
42 changed files with 1480 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#include <iostream>
using namespace std;
int main() {
int n,
a,
e = 0,
o = 0;
cin >> n;
while (n--) {
cin >> a;
if (a%2 == 0)
++e;
else
++o;
}
if (e > o)
cout << "READY FOR BATTLE";
else
cout << "NOT READY";
cout << endl;
return 0;
}