You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int func(int n) {
|
|
if (n <= 50) {
|
|
putint(n);
|
|
return 1;
|
|
}
|
|
else {
|
|
putint(n);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
int i;
|
|
|
|
if (func(0) == 1 || func(50) == 1 && func(100) == 0)
|
|
i = 0;
|
|
else
|
|
i = 1;
|
|
|
|
if (func(50) == 1 && func(40) == 1 || func(1) == 1 )
|
|
i = 0;
|
|
else
|
|
i = 1;
|
|
|
|
return 0;
|
|
}
|