Untitled
Anonymous
c_cpp
02/11/2024 8:39 AM
316 B
17
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