fork download
  1. #include <stdio.h>
  2.  
  3. int countCntyOccur (char cntyCodes[],int size);
  4.  
  5. int main(void) {
  6. char cntyCodes[]= {'C','c','c','D','d','G','L','l','l','L','T','t','t','W','w','X'};
  7. countCntyOccur(cntyCodes,16);
  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 totalInvalidCountyCodes=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. totalInvalidCountyCodes+=1;
  58. }
  59.  
  60. }
  61. printf("The number of Cork codes is: %i\n", totalCorkCodes);
  62. printf("The number of Dublin codes is: %i\n", totalDublinCodes);
  63. printf("The number of Galway codes is: %i\n", totalGalwayCodes);
  64. printf("The number of Limerick codes is: %i\n", totalLimerickCodes);
  65. printf("The number of Waterford codes is: %i\n", totalWaterfordCodes);
  66. printf("The number of invalid codes is: %i\n", totalInvalidCountyCodes);
  67. // struct countryTotals{
  68. // int totalCorkCodes;
  69. // int totalDublinCodes;
  70. // int totalGalwayCodes;
  71. // int totalLimerickCodes;
  72. // int totalTiperaryCodes;
  73. // int totalWaterfordCodes;
  74. // int totalInvalidCountryCodes;
  75. // }
  76. // return countryTotals;
  77.  
  78. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
The number of Cork codes is: 3
The number of Dublin codes is: 2
The number of Galway codes is: 1
The number of Limerick codes is: 4
The number of Waterford codes is: 2
The number of invalid codes is: 1