Advertisement
Guest User

Исправленная версия

a guest
Nov 28th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << "Napishite chislo,i vi uznaete vse chisla ot 0, do nego samogo:";
  8. int a;
  9. cin >> a;
  10. int b;
  11. b=0;
  12. a=a+1;
  13.  
  14. if(b<a)
  15. {
  16. while(b<a)
  17. {
  18. cout << b;
  19. if(b<a-1)
  20. {
  21. cout << ",";
  22. }
  23. b=b+1;
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement