Untitled
unknown
c_cpp
a year ago
256 B
3
Indexable
#include <iostream> #include <cmath> using namespace std; bool ch(int a) { if (a % 2 == 0) return true; else return false; } int main() { int a; cin >> a; if (ch(a) == true) cout << "chetnoe"; else cout << "ne chetnoe"; }
Editor is loading...
Leave a Comment