fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int Square ( int );
  6. int Cube ( int );
  7. float Divide2 ( int );
  8. float Squareroot ( int );
  9.  
  10. int main()
  11. {
  12. /* variable definition: */
  13.  
  14. int intValue, menuSelect,Results;
  15. float floatResults;
  16. intValue = 1;
  17.  
  18. // While a positive number
  19. while (intValue > 0)
  20. {
  21. // Prompt the user for number
  22. printf ("Enter a positive Integer\n: ");
  23. scanf("%d", &intValue);
  24.  
  25. // test for positive value input
  26. if (intValue > 0)
  27. {
  28. printf ("Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot \n: ");
  29. scanf("%d", &menuSelect);
  30.  
  31. if (menuSelect == 1)
  32. {
  33. // Call the Square Function
  34. Results = Square(intValue);
  35. printf("Square of %d is %d\n",intValue,Results);
  36. }
  37. else if (menuSelect == 2)
  38. {
  39. // Call the Cube function
  40. Results = Cube(intValue);
  41. printf("Cube of %d is %d\n",intValue,Results);
  42. }
  43.  
  44. else if (menuSelect == 3)
  45. {
  46. // Call the Divide2 function
  47. floatResults = Divide2(intValue);
  48. printf("Dividing %d by 2 is %f\n",intValue,floatResults);
  49. }
  50.  
  51. else if (menuSelect == 4)
  52. {
  53. // Call the Squareroot function
  54. floatResults = Squareroot(intValue);
  55. printf("Squareroot of %d is %f\n",intValue,floatResults);
  56. } //endif - menuSelect
  57.  
  58. else
  59. printf("Invalid menu item, only 1,2,3 or 4 is accepted\n");
  60. }
  61.  
  62. } //EndWhile
  63.  
  64. return 0;
  65. }
  66. /*** Function defintions ***/
  67.  
  68. /* function returning the Square of a number */
  69. // This function will return the square of the input value
  70. // Input: value - input number
  71. // Output: return - input number squared (x*x)
  72. int Square(int value)
  73. {
  74. return value*value;
  75. }
  76.  
  77. /* function returning the Cube of a number */
  78. // This function will return the cube of the input value
  79. // Input: value - input number
  80. // Output: return - input number cubed (x*x*x)
  81. int Cube(int value)
  82. {
  83. return value*value*value;
  84. }
  85.  
  86. /* function returning the value of the input Integer divided by 2 */
  87. // This function will return the cube of the input value divided by 2
  88. // Input: value - input number
  89. // Output: return - input number Divide2 ((float)x/2)
  90. float Divide2(int value)
  91. {
  92. return (float)value/2;
  93. }
  94.  
  95. /* function returning the squareroot of the input Integer */
  96. // This function will return the squareroot of the input value
  97. // Input: value - input number
  98. // Output: return - input number Squareroot (sqrt(x))
  99. float Squareroot(int value)
  100. {
  101. return sqrt(value);
  102. }
  103.  
Runtime error #stdin #stdout 0s 9432KB
stdin
10 1
12 2
14 3
16 4
stdout
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Square of 10 is 100
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Cube of 12 is 1728
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Dividing 14 by 2 is 7.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Integer
: Enter 1 to calculate Square, 2 to Calculate Cube, 3 to divide by 2, 4 to get the squareroot 
: Squareroot of 16 is 4.000000
Enter a positive Inte