Advertisement
Md_hosen_zisad

PERFORM TEST 3 SOL2

Oct 29th, 2017
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.71 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     char ch1,ch2;
  5.     int sum;
  6.     while(1)
  7.     {
  8.         scanf("%c%c",&ch1,&ch2);
  9.  
  10.         if(ch1=='?' && ch2=='?')
  11.             break;
  12.  
  13.         sum=((ch1-65)+(ch2-65));
  14.         if(sum>25)
  15.  
  16.         {
  17.             sum=sum%26;
  18.         }
  19.         printf("%c\n",sum+65);
  20.          getchar();
  21.         }
  22.  
  23.  
  24. return 0;
  25. }
  26. #include<stdio.h>
  27. int main()
  28. {
  29.     char ch1,ch2;
  30.     int sum;
  31.     while(1)
  32.     {
  33.         scanf("%c%c",&ch1,&ch2);
  34.  
  35.         if(ch1=='?' && ch2=='?')
  36.             break;
  37.  
  38.         sum=((ch1-65)+(ch2-65));
  39.         if(sum>25)
  40.  
  41.         {
  42.             sum=sum%26;
  43.         }
  44.         printf("%c\n",sum+65);
  45.          getchar();
  46.         }
  47.  
  48.  
  49. return 0;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement