Answer:
The hint answer it all
Step-by-step explanation:
int i= 0;
int n= 5;
while (i < n){
print((i*2)+1);
i++;
}
result:
1, 3, 5, 7, 9
5.3m questions
6.9m answers