Advertisement
Guest User

Darbas1

a guest
Dec 7th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <io.h>
  2. #include <iostream>
  3. #include <iomanip>
  4. #include <fstream>
  5.  
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11. system ("chcp 1257");
  12. int m, d, s;
  13. cout << "Kiek saldainių buvo iš viso ?"; cin >> m;
  14. d = 0;
  15. s = 1;
  16. while (s <= m) {
  17. s = d + s + 1;
  18. d = d + 1;
  19. }
  20. cout << "Po kiek dienų neliks saldainių " << d << endl;
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement