public class Count {
public static void main(String[] args) throws IOException {
Scanner scanner=new Scanner(System.in);
Integer i=scanner.nextInt();
for (int j = 0; j <20 ; j++) {
i=i+i;
System.out.println("第"+j+"次累加:"+i);
}
}
}
没个规律就直接累加吗?。。。
你在哪个机构培训