fork download
  1. #include <stdio.h>
  2.  
  3. int validateIrishLicense(int year, int halfYear, char County, int Sequence1);
  4.  
  5. int main(void) {
  6. int valid=validateIrishLicense(13,1,'D',21);
  7. printf("Valid or not %i\n", valid);
  8.  
  9. int retVal = validateIrishLicense (13, 2, 'X', 1);
  10. printf("Valid or not retVal: %i\n", retVal);
  11.  
  12. int retVal2 = validateIrishLicense (24,1,'C',1245891);
  13. printf("Valid or not retVal2: %i\n", retVal2);
  14. return 0;
  15. }
  16.  
  17. //***********************************************************************************************************************************
  18. // Function: validateIrishLicense
  19. //
  20. // Purpose: Receives information on the year, half year,
  21. // county, and a one to six-digit sequence number which
  22. // are used to validate an Irish license plate and return
  23. // a True value (1) if the license plate is valid,
  24. // otherwise a False value (0)
  25. //
  26. // Parameters:
  27. //
  28. // year - Two digit year (2013 would be 13, 2014 would be 14, and so on .. through 24 for 2024. Any other year is invalid)
  29. // halfYear - Number used to represent the half year. A 1 indicates the car was sold between Jan-Jun, while a 2 between July-Dec
  30. // county - A character value that represents the Irish County where the car was registered
  31. // sequence1 - A one to six-digit sequence number, starting with the first vehicle registered in the county/city that year/period
  32. //  
  33. //
  34. // Returns: a True value (1) if the license plate is valid, otherwise a False value (0)
  35. //
  36. //***********************************************************************************************************************************
  37.  
  38. int validateIrishLicense(int year, int halfYear, char county, int sequence1){
  39.  
  40. int criteriaMet=0; /*local variable that will be used to represent the number of criteria for a license plate to be valid that are met*/
  41.  
  42. if (year>=13 & year<=24){
  43. criteriaMet+=1; /*if year is in the appropriate range, then increment the number of criteria met (criteriaMet) by 1 */
  44. }
  45.  
  46. if (halfYear==1 | halfYear==2){
  47. criteriaMet+=1; /*if the half year is in the appropriate range, then increment the number of criteria met (criteriaMet) by 1 */
  48. }
  49.  
  50. char valid_county[]= {'C','c','D','d','G','g','L','l','T','t','W','w'}; /*list of the valid character values that can be used to represent Irish counties*/
  51. const VAL_COUNTIES=12; /*number of valid character values that can be used to represent Irish counties*/
  52.  
  53. for (int i=0; i < VAL_COUNTIES; i++) {
  54. if (county==valid_county[i]){
  55. criteriaMet+=1; /*if the value for county is in the list of valid counties, then increment the criteria met variable by 1*/
  56. }
  57. }
  58.  
  59. int digits=1; /*creating a variable to represent the number of digits in a sequence and setting it to 1 to start*/
  60. if (sequence1>0){
  61. while ((sequence1/10)>0){
  62. digits+=1; /*dividing the numeric sequence by 10 and it is still greater than 0, then it has another digit */
  63. sequence1 /=10; /*continuing to do this until the total number of digits have been counted*/
  64. }
  65. }
  66. if (digits>=1 & digits<=6){
  67. criteriaMet+=1; /*if the sequence is the appropriate number of digits (i.e., 1-6 digits)
  68.   then incrementing the number of criteria met by 1*/
  69. }
  70.  
  71. if (criteriaMet==4){
  72. return 1; /*checking if all 4 criteria for identifying a license plate as valid have been met
  73.   and if so, returning a value of 1 (to represent a valid license plate)*/
  74. }
  75. else{
  76. return 0;/*if it's not the case that all the criteria have been met, returning a value of 0*/
  77. }
  78. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Valid or not 1
Valid or not retVal: 0
Valid or not retVal2: 0