Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
1,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1.  
  2.  
  3. ALLA ÄR HACKADE HAHAHHA :DDD
  4.  
  5.  
  6. LIVE => 245@yahoo.com
  7. LIVE => 6@yahoo.com
  8. LIVE => a.manzanares@yahoo.com
  9. LIVE => a_rambo101@yahoo.com
  10. LIVE => aalittlelandscaping@yahoo.com
  11. LIVE => aaronappraisal@yahoo.com
  12. LIVE => aanytimemobilenotary@yahoo.com
  13. LIVE => abc@yahoo.com
  14. LIVE => abaappraisal@yahoo.com
  15. LIVE => abb99bot@yahoo.com
  16. LIVE => abadiboo@yahoo.com
  17. LIVE => abdul_fahmy@yahoo.com
  18. LIVE => abdulatifelcheikh@yahoo.com
  19. LIVE => abell165@yahoo.com
  20. LIVE => abinv21@yahoo.com
  21. LIVE => absnotary@yahoo.com
  22. LIVE => absolutecleansweep@yahoo.com
  23. LIVE => ace.pest@yahoo.com
  24. LIVE => achemyanrouzanna@yahoo.com
  25. LIVE => adan.aguillon@yahoo.com
  26. LIVE => adamwrodgers@yahoo.com
  27. LIVE => adan.perez@yahoo.com
  28. LIVE => adarmond@yahoo.com
  29. LIVE => adrianebaidowi@yahoo.com
  30. LIVE => advantedge4u@yahoo.com
  31. LIVE => agapeintl@yahoo.com
  32. LIVE => aggressivere@yahoo.com
  33. LIVE => agnestbk@yahoo.com
  34. LIVE => agtimm@yahoo.com
  35. LIVE => ahzhen03@yahoo.com.sg
  36. LIVE => aiko1781@yahoo.com.sg
  37. LIVE => ailed9710@yahoo.com
  38. LIVE => aigt_2000@yahoo.com
  39. LIVE => ajeangilles@yahoo.com
  40. LIVE => ajohn47708@yahoo.com
  41. LIVE => akarmiloff1@yahoo.com
  42. LIVE => albc@yahoo.com
  43. LIVE => albert_millard@yahoo.com
  44. LIVE => albubear@yahoo.com
  45. LIVE => alco1994@yahoo.com
  46. LIVE => alegalpro@yahoo.com
  47. LIVE => alex_alonzo@yahoo.com
  48. LIVE => alexazgrts@yahoo.com
  49. LIVE => alexrealtyusa@yahoo.com
  50. LIVE => alexutzu_cosmin@yahoo.com
  51. LIVE => alge0303_tutsy@yahoo.com
  52. LIVE => ali85mdred@yahoo.com
  53. LIVE => alina_derminassian@yahoo.com
  54. LIVE => alissaliz22@yahoo.com
  55. LIVE => allbay@yahoo.com
  56. LIVE => allemonjoy@yahoo.com
  57. LIVE => alle8797@yahoo.com
  58. LIVE => alleniagodsey@yahoo.com
  59. LIVE => allentreeservice@yahoo.com
  60. LIVE => alliance15@yahoo.com
  61. LIVE => allinvestment2004@yahoo.com
  62. LIVE => alloutcleaners@yahoo.com
  63. LIVE => allprotreecare@yahoo.com
  64. LIVE => allstrungup4you@yahoo.com
  65. LIVE => alvarez.ana55@yahoo.com
  66. LIVE => alvidk@yahoo.com
  67. LIVE => amajorhi@yahoo.com
  68. LIVE => alynchnewton@yahoo.com
  69. LIVE => amanda_akg@yahoo.com
  70. LIVE => amandafield83@yahoo.com
  71. LIVE => amart_jr@yahoo.com
  72. LIVE => amos_b4@yahoo.com.sg
  73. LIVE => amyolier72@yahoo.com
  74. LIVE => amtrealty@yahoo.com
  75. LIVE => anderson@yahoo.com
  76. LIVE => andersonsmobilenotary@yahoo.com
  77. LIVE => andyhallmails@yahoo.com
  78. LIVE => anecia_1@yahoo.com
  79. LIVE => anelo_inc@yahoo.com
  80. LIVE => angaleejones@yahoo.com
  81. LIVE => angel140200@yahoo.com
  82. LIVE => angelamsells@yahoo.com
  83. LIVE => angelhaven949@yahoo.com
  84. LIVE => angelica.realtor@yahoo.com
  85. LIVE => angelhooker@yahoo.com
  86. LIVE => angelmerino05@yahoo.com
  87. const int MaxN = 100;
  88. struct AutoT {
  89.  
  90. int amount;
  91. string date;
  92. int quantities;
  93. };
  94. int main() {
  95.  
  96. AutoT avto[MaxN];
  97. int N;
  98. bool exist;
  99. int sum;
  100. string when;
  101. int cnt;
  102. string refueled[MaxN];
  103.  
  104.  
  105. bool errorA = false;
  106. do {
  107. cout << "Number of items?: ";
  108. cin >> N;
  109. errorA = ((N < 1) || (N > MaxN));
  110. if (errorA) {
  111. cout << "ERROR!! Please change value" << endl;
  112. }
  113.  
  114. } while (errorA);
  115.  
  116. for (int i = 0; i < N; i++) {
  117. cout << i + 1 << " item's date? ";
  118. cin >> avto[i].date;
  119. bool errorB = false;
  120. do {
  121. cout << i + 1 << " item's amount?: ";
  122. cin >> avto[i].amount;
  123. errorB = (avto[i].amount < 0);
  124. if (errorB) {
  125. cout << "ERROR!! Please change value" << endl;
  126. }
  127. } while (errorB);
  128. bool errorC = false;
  129. do {
  130. cout << i + 1 << " item's quantities?: ";
  131. cin >> avto[i].quantities;
  132. errorC = (avto[i].quantities < 0);
  133. if (errorC) {
  134. cout << "ERROR!! Please change value" << endl;
  135. }
  136. } while (errorC);
  137.  
  138. }
  139.  
  140.  
  141.  
  142.  
  143. int i = 0;
  144. while ((i <= N) && (avto[i].amount != 20000)) {
  145. i += 1;
  146. }
  147. exist = (i <= N);
  148.  
  149.  
  150. if (exist) {
  151. when = avto[i].date;
  152. cout << "The date we payed exactly 20000 HUF: " << when << endl;
  153. } else {
  154. when = "never";
  155. cout << "We " << when << " payed exactly 20000 HUF for fuelin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement