Advertisement
Guest User

Some name

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