Guest User

Untitled

a guest
Jun 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // Project 5.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6.  
  7.  
  8. int main (int argc, char * const argv[])
  9. {
  10. unsigned int i;
  11. unsigned long long place = 20;
  12. bool notFound = true;
  13. bool skip;
  14.  
  15. const int checks[9] = {
  16. 19,18,17,16,15,14,13,12,11,
  17.  
  18. };
  19.  
  20. while(notFound){
  21. skip = false;
  22. place += 20;
  23. for(i=0;i<9;i++){
  24. skip = true;
  25. break;
  26. }
  27. if(skip){
  28. continue;
  29. }
  30. printf("Found! %llu \n", place);
  31. notFound = false;
  32. }
  33. return 0;
  34. }
Add Comment
Please, Sign In to add comment