fork download
  1. #include <stdio.h>
  2.  
  3. int countCntyOccur (char cntyCodes[],int size);
  4.  
  5. int main(void) {
  6. char cntyCodes[]= {'C','c','D','d','G','g','L','l','T','t','W','w'};
  7. countCntyOccur(cntyCodes,12);
  8. return 0;
  9. }
  10.  
  11.  
  12. int countCntyOccur (char cntyCodes[],int size){
  13.  
  14. int totalCorkCodes=0;
  15. int totalDublinCodes=0;
  16. int totalGalwayCodes=0;
  17. int totalLimerickCodes=0;
  18. int totalTiperaryCodes=0;
  19. int totalWaterfordCodes=0;
  20. int totalInvalidCountryCodes=0;
  21.  
  22.  
  23. for (int i = 0; i < size; i++) {
  24. // Switch statement
  25. switch (cntyCodes[i]) {
  26. case 'C':
  27. case 'c':
  28. totalCorkCodes+=1;
  29. break;
  30.  
  31. case 'D':
  32. case 'd':
  33. totalDublinCodes+=1;
  34. break;
  35.  
  36. case 'G':
  37. case 'g':
  38. totalGalwayCodes+=1;
  39. break;
  40.  
  41. case 'L':
  42. case 'l':
  43. totalLimerickCodes+=1;
  44. break;
  45.  
  46. case 'T':
  47. case 't':
  48. totalTiperaryCodes+=1;
  49. break;
  50.  
  51. case 'W':
  52. case 'w':
  53. totalWaterfordCodes+=1;
  54. break;
  55.  
  56. default:
  57. totalInvalidCountryCodes+=1;
  58. }
  59.  
  60. }
  61. printf("The grade is: %i\n", totalCorkCodes);
  62. // struct countryTotals{
  63. // int totalCorkCodes;
  64. // int totalDublinCodes;
  65. // int totalGalwayCodes;
  66. // int totalLimerickCodes;
  67. // int totalTiperaryCodes;
  68. // int totalWaterfordCodes;
  69. // int totalInvalidCountryCodes;
  70. // }
  71. // return countryTotals;
  72.  
  73. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
The grade is: 2