Advertisement
HristoBaychev

Brexit

Oct 1st, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2.  int main()
  3.  {
  4.     int totalGlasses = 0;
  5.     int glassesUncii = 8;
  6.     int uncii = 0;
  7.  
  8.     printf("Hello, how many uncii do you want?");
  9.     scanf("\n%d", &uncii);
  10.  
  11.     totalGlasses = uncii / glassesUncii;
  12.  
  13.     printf("%d", totalGlasses);
  14.  
  15.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement