Untitled
user_5811307
plain_text
2 years ago
218 B
6
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