教资会网络 | UGC NET CS 2017 年一月至三日 |问题 39
考虑以下Java程序:
public class First {
public static int CBSE (int x) {
if (x < 100) x = CBSE (x + 10);
return (x – 1);
}
public static void main (String[] args){
System.out.print(First.CBSE(60));
}
}
这个程序打印什么?
(一) 59
(乙) 95
(C) 69
(四) 99答案:(乙)
解释:
Java
import java.io.*;
public class First {
public static int CBSE (int x) {
if (x < 100) x = CBSE (x + 10);
return (x-1);
}
public static void main (String[] args) {
System.out.print(First.CBSE(60));
}
}
So, option (B) is correct.Quiz of this Question
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。