SAADQUAMER

Untitled

Jul 25th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int n,k,f;
  5.     scanf("%d%d",&n,&k);
  6.  
  7.     if(n==1)
  8.     {
  9.         f=0+k;
  10.         printf("Heeey girl! I am in semester %d!\n",f);
  11.     }
  12.     else if (n==2)
  13.     {
  14.         f=3+k;
  15.         printf("Heeey girl! I am in semester %d!\n",f);
  16.     }
  17.     else if(n==3)
  18.     {
  19.         f=6+k;
  20.         printf("Heeey girl! I am in semester %d!\n",f);
  21.     }
  22.     else
  23.     {
  24.         f=9+k;
  25.         printf("Heeey girl! I am in semester %d!\n",f);
  26.     }
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment