Answer:
Step-by-step explanation:
the pattern is increasing squared number. 1^2, 2^2, 3^2, 4^2, 5^2
int i=1;
while (i<=16) {
Print i^2;
i++;
}
9.2m questions
11.9m answers