有人可以帮我创建一个包含整数数组和整数变量的方法吗?
基本上我正在尝试编写这个程序,其中用户输入一个小于20的数字,例如3,并且程序将3的两倍减少到2的倍数和1的倍数。所以3 = 6 ,2 = 4,1 = 2.我是java的新手,整天都试图编写这个程序并且无处可去。任何帮助表示赞赏...
答案 0 :(得分:0)
你在寻找这样的东西:
public class DoubleDown {
public static void main(String[] args) {
Scanner user_input = new Scanner( System.in ); //This recieves the users input
int num = Integer.parseInt(user_input.next()); // and converts it to an integer.
for(int i = num; i > 0; i--) { //Loop to count down from user's input
System.out.println(i * 2); //and double it.
}
}
}