Untitled
unknown
c_cpp
2 years ago
235 B
5
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