Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. int input,output;
  7.  
  8. printf("Enter number : ");
  9. scanf("%i",&input);
  10.  
  11. output = input % 7;
  12. printf("%i",output);
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement