如何在编辑器中编写简单的Java序列(使用notepad ++)?
我熟悉基础知识,但无法在我的cmd中打印这个。
int a = 1; a = a + a; a = a + a; a = a + a; ...
答案 0 :(得分:1)
这应该是你想要的。
public static void main(String[] args)
{
int startValue = 1;
int numberOfAdditions = 10;
int currentValue = startValue;
for(int i = 0;i<numberOfAdditions;i++)
{
//do opperations here
currentValue = currentValue+currentValue;
//print out value
System.out.println(currentValue);
}
}
答案 1 :(得分:1)
试试这个:
int a = 1;
for (int i = 0 ; i < MAX_PRINTS ; i++) {
System.out.println(a);
a *= 2;
}
或者如果要打印直到达到某个值:
int a = 1;
while (a <= MAX_VALUE) {
System.out.println(a);
a *= 2;
}