英文:
I need a function for putting 5 as argument and return 7 and vice versa
问题
创建一个具有一个int类型参数/参数的方法/函数。如果用户传递5个值,则它将返回7,如果用户输入7,则返回5。但重要的是,我不允许使用任何条件操作,如==,<,>,<=,>=,if else,三元运算符,switch语句,while循环和任何内置方法。
英文:
Make a method/function with one parameter/argument of int type. if user pass 5 value then it will return 7 and if user put 7 it will return 5 . but important thing is that I was not allowed to use any conditional operation like == , <, >, <=, >=, if else, ternary operator ,switch statement , while, for loop and any built in method.
答案1
得分: 6
public int fiveOrSeven(int input){
return 35 / input;
}
英文:
public int fiveOrSeven(int input){
return 35 / input;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论