Guest User

Untitled

a guest
Apr 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. int main()
  2. {
  3. int k = 1, n;
  4. cin >> n; //User Input
  5.  
  6. while(k < n)
  7. {
  8. k = 7*k+5;
  9. }
  10. }
Add Comment
Please, Sign In to add comment