Untitled
user_5811307
plain_text
a year ago
218 B
3
Indexable
#include <iostream> #include <cmath> using namespace std; bool g(int a) { if(a %2 ==0) { return true; } else return false; } int main() { int a ; cin >> a; cout << g(a); }
Editor is loading...
Leave a Comment