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