fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int numOfInst, totalCycles, totalInst, clockRate;
  6. int cpiClass[100], instCount[100];
  7. void parameters(){
  8. totalInst = 0;
  9. totalCycles = 0;
  10. int counter;
  11.  
  12. printf("Enter the number of instruction classes: \n");
  13. scanf(" %d", &numOfInst);
  14. printf("Enter the frequency of the machine (MHz): \n");
  15. scanf(" %d", &clockRate);
  16.  
  17. for (counter = 0; counter < numOfInst; counter++){
  18. printf("Enter CPI of class %d: ", counter + 1);
  19. scanf(" %d", &cpiClass[counter]);
  20. printf("Enter instruction count of class %d (millions): ", counter + 1);
  21. scanf(" %d", &instCount[counter]);
  22.  
  23. totalInst += instCount[counter];
  24. totalCycles += cpiClass[counter] * instCount[counter];
  25. }
  26. return;
  27. }
  28.  
  29. /*float avgCPI(){
  30. float avg = totalCycles / ((float)totalInst);
  31. return (avg);
  32. }
  33.  
  34. float execTime(){
  35. float time = (totalCycles / ((float)clockRate)) * 1000;
  36. return (time);
  37. }
  38.  
  39. float calcMips(){
  40. float mips = totalInst / (totalCycles / ((float)clockRate));
  41. return (mips);
  42.  
  43. }*/
  44. void printParam(){
  45. int i;
  46. printf("-------------------------\n");
  47. printf("| Class\t | CPI\t |Count\t |\n");
  48. for (i = 0; i < numOfInst; i++){
  49. printf(" %d\t%d\t%d\t\n", i+1,cpiClass[i],instCount[i]);
  50. }
  51. /*totalCycles[i], totalInst[i]);*/
  52. return;
  53. }
  54.  
  55. /*void printPerformance{
  56. }*/
  57. int main()
  58. {
  59. int option;
  60. do {
  61. printf("\nPerformance assessment: ");
  62. printf("\n-----------------------");
  63. printf("\n1) Enter parameters: ");
  64. printf("\n2) Print table of parameters: ");
  65. printf("\n3) Print table of performance ");
  66. printf("\n4) Quit \n");
  67. scanf(" %d", &option);
  68.  
  69. switch (option){
  70. case 1: parameters();
  71. break;
  72. case 2: printParam();
  73. break;
  74. case 3:
  75. break;
  76. case 4:
  77. break;
  78. default: printf("Invalid input, please enter a number from 1-4 ");
  79. }
  80. }while(option != 4);
  81. return 0;
  82. }
Runtime error #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit 
Invalid input, please enter a number from 1-4 
Performance assessment: 
-----------------------
1) Enter parameters: 
2) Print table of parameters: 
3) Print table of performance 
4) Quit