Sinux1

PS5Q4 cs 111

Mar 11th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.  
  7.     for (int x = 100; x >= 1; x -= 1)
  8.     {
  9.         if (x == 1)
  10.         {
  11.             cout << x << endl;
  12.         }
  13.         else
  14.         {
  15.             cout << x << ", ";
  16.         }
  17.     }
  18.  
  19.  
  20.  
  21.  
  22.     return 0;
  23. }
Add Comment
Please, Sign In to add comment