C与C++规则如下
例:
要求实现一个函数: int IsEven(int x);//返回x是否为偶数,是返回1,否则返回0?
下面是你写的函数代码:
int IsEven(int x){
????? ? if(x%2==0)return 1;
? ? ? ? ?return 0;
}
Java提交函数说明?
例如要求实现一个函数 是否为奇数?
原型: public static int IsEven(int x);?
你需要提交的代码是?
?public static int IsEven(int x)
?{
??????if(x % 2 == 0)
???????return 1;
??????else
???????return 0;
?}?
输入一个x,判断是否为偶数
如果是奇数输出1,否则输出0。
int IsEven(int x){
if(x%2==0)return 1;
return 0;
}