fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a,b;
  6. printf("Input a:");
  7. scanf("%d",&a);
  8. b=a%10;
  9. if(b==9||10){
  10. printf("A\n");
  11. }else if(b==8){
  12. printf("B\n");
  13. }else if(b==7){
  14. printf("C\n");
  15. }else if(b==6){
  16. printf("D\n");
  17. }else{
  18. printf("E\n");
  19. }
  20.  
  21. return 0;
  22. }
Success #stdin #stdout 0s 5280KB
stdin
86
stdout
Input a:A