The following code has error(s). Rewrite the correct code underlining all
the corrections made :
int n = 15
int i =10. X = 1;
while(i <=n];
{
x=x*
1++
system.out.println(x):
Answers
Answered by
1
Explanation:
int n = 15;
int i =10,x = 1;
while(i <=n)
{
x=x*;
}
i++;
System.out.println(x);
Similar questions