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, 3, 'K', 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. int validateIrishLicense(int year, int halfYear, char County, int Sequence1){
  18.  
  19. int check=0;
  20.  
  21. if (year>=13 & year<=24){
  22. check+=1;
  23. }
  24.  
  25. if (halfYear==1 | halfYear==2){
  26. check+=1;
  27. }
  28.  
  29. char valid_county[]= {'C','c','D','d','G','g','L','l','T','t','W','w'};
  30. const VAL_COUNTIES=12;
  31.  
  32. for (int i=0; i < VAL_COUNTIES; i++) {
  33. if (County==valid_county[i]){
  34. check+=1;
  35. }
  36. }
  37.  
  38. int digits=1;
  39. if (Sequence1>0){
  40. while ((Sequence1/10)>0){
  41. digits+=1;
  42. Sequence1 /=10;
  43. }
  44. }
  45. if (digits>=1 & digits<=6){
  46. check+=1;
  47. }
  48.  
  49. if (check==4){
  50. return 1;
  51. }
  52. else{
  53. return 0;
  54. }
  55. }
  56.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Valid or not 1
Valid or not retVal: 0
Valid or not retVal2: 0