Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<math.h>
- int main()
- {
- int n,i,k,r;
- scanf("%d",&n);
- for(i=1;i<=n;i++){
- scanf("%d",&k);
- r=ceil((double)k/7);
- printf("%d\n",r);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement