Untitled
unknown
c_cpp
a year ago
235 B
3
Indexable
#include <iostream> #include <cmath> using namespace std; double null(int c) { if (c % 2 == 0) { return true; } if (c % 2 == 1) { return false; } } int main() { int c; cin >> c; cout<<null(c); }
Editor is loading...
Leave a Comment