Saved Bookmarks
| 1. |
/ Program 12.9# include <iostream.h> :# include <conio.h>// to print the square of numbers// between 2 to 5void main(clrscr):int num 2;while (num < 6)cout << num * num <num += 1;t'getch(); |
|
Answer» Question you have submitted is incomplete. Please post a complete question. output of the programme is4 9 16 25 |
|