Untitled
unknown
c_cpp
10 months ago
235 B
1
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); }
Leave a Comment