Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(void){
  3. // Your code here!
  4. int start = 1,goal = 100,surplus = 0;
  5. int i = 0;
  6. for(i = start;i <= goal;i++){
  7. surplus = i % 17;
  8. if(surplus == 5){printf("%d ",i);}
  9. }
  10. }
Add Comment
Please, Sign In to add comment