Untitled
unknown
c_cpp
2 years ago
287 B
5
Indexable
#include <iostream>
using namespace std;
int falsetrue(int a) {
if (a % 2 == 0) {
return true;
}
else {
return false;
}
}
int main()
{
int a;
cin >> a;
if (falsetrue(a)) {
cout << "true" << endl;
}
else {
cout << "false" << endl;
}
}Editor is loading...
Leave a Comment