(vi) Write a program to print the square of numbers between 15 to 25.
Or
Answers
Answered by
1
Answer:
Following loop can be implemented using c++.
#include<bits/stdc++.h>
using namespace std;
for(int i=16; i<=24; i++) {
int sq= i*i;
cout<< sq ;
}
Similar questions