fork download
  1. #include <stdio.h>
  2.  
  3. int irishLicensePlateValidator(int year, int halfYear, char County, int Sequence);
  4.  
  5. int main(void) {
  6. int year = 12; // year validity
  7. int halfYear = 1; // halfyear validity
  8. char County = 'c'; // county validity
  9. int Sequence = 132456; // sequence validity
  10. int validity = irishLicensePlateValidator(year, halfYear, County, Sequence);
  11. printf("%d\n", validity);
  12. year = 8; // testing validity for year
  13. validity = irishLicensePlateValidator(year, halfYear, County, Sequence);
  14. printf("%d\n", validity);
  15. year = 15; // placeholder true value
  16. halfYear = 3; // testing validity for half year
  17. validity = irishLicensePlateValidator(year, halfYear, County, Sequence);
  18. printf("%d\n", validity);
  19. year = 15; // valid year
  20. halfYear = 2; // valid halfyear
  21. County = 'f'; // invalid county
  22. validity = irishLicensePlateValidator(year, halfYear, County, Sequence);
  23. printf("%d\n", validity);
  24. year = 15; // valid year
  25. halfYear = 2; // valid halfyear
  26. County = 'C'; // valid county
  27. Sequence = 12367432; // test invalid sequence
  28. validity = irishLicensePlateValidator(year, halfYear, County, Sequence);
  29. printf("%d\n", validity);
  30. return 0;
  31. }
  32. //***********************************************************
  33. // Function irishLicensePlateValidator
  34. //
  35. // Description : Ensure license plate is valid
  36. //
  37. // Parameters : int year - Valid year is 2 digits
  38. // int halfYear - 1 and 2 is valid
  39. // char County - Checked the character in license plate for validity
  40. // sequence - Ensures we are not over 7 digits in our plate
  41. //
  42. // Returns : 1 for valid, 0 for invalid on any parameters
  43. //
  44. //***************************************************************
  45. int irishLicensePlateValidator(int year, int halfYear, char County, int Sequence)
  46. {
  47.  
  48. int valid = 1; // initialize valid license plate #
  49.  
  50. if(year < 10 || year > 25)
  51. {
  52. valid = 0; // return invalid
  53. }
  54.  
  55. if(halfYear != 1 && halfYear != 2)
  56.  
  57. {
  58. valid = 0; // return invalid
  59. }
  60.  
  61. if(County != 'C' && County != 'D' && County != 'G' && County != 'L' && County != 'T' && County != 'W'
  62. && County != 'c' && County != 'd' && County != 'g' && County != 'l' && County != 't' && County != 'w')
  63. // Run acceptable county #s
  64. {
  65. valid = 0; // return invalid
  66. }
  67.  
  68. if(Sequence >= 1000000 || Sequence < 1) // range of sequences
  69. {
  70. valid = 0; // return invalid
  71. }
  72.  
  73. return valid; // Return valid
  74. }
  75.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
1
0
0
0
0