Rewrite the following using for loop :
int b = 2;
while(b <= 12)
{ x = x + 3;
System.out.println(b);
b = b * 2;
}
System.out.println(b + 1);
Answers
Answered by
0
Answer:
for(int i=2;i>1;i++)
System.out.print("*");
Explanation:
Similar questions
Physics,
1 month ago
Music,
2 months ago
Biology,
2 months ago
Science,
10 months ago
Accountancy,
10 months ago