| 27 | } |
| 28 | |
| 29 | void second() |
| 30 | { |
| 31 | // when the case 2 in the main menu |
| 32 | for (int l = 0; l < 120; l++) |
| 33 | { |
| 34 | cout << "="; |
| 35 | } |
| 36 | cout << endl; |
| 37 | cout << "\t\t\t\t***Circumference of Geometrical figures.***\n"; |
| 38 | for (int l = 0; l < 120; l++) |
| 39 | { |
| 40 | cout << "="; |
| 41 | } |
| 42 | cout << endl; |
| 43 | cout << " [1] Circle" << endl; |
| 44 | cout << " [2] Rectangle" << endl; |
| 45 | cout << " [3] Triangle" << endl; |
| 46 | cout << " [4] Square" << endl; |
| 47 | cout << " [5] EXIT to MAIN MENU" << endl; |
| 48 | cout << endl; |
| 49 | } |
| 50 | |
| 51 | void third() |
| 52 | { |