qwe
unknown
c_cpp
2 years ago
244 B
8
Indexable
#include <iostream>
using namespace std;
bool asd(int a)
{
if (a % 2 == 0) return true;
else return false;
}
int main()
{
int a;
cin >> a;
if (asd(a) == true) cout << a << " - chetkoe";
else cout << a << " - ne chetkoe";
}Editor is loading...
Leave a Comment