12 lines
137 B
C++
12 lines
137 B
C++
|
#include "1b.h"
|
||
|
bool is_even(int num)
|
||
|
{
|
||
|
if (num%2 == 0)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|