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