Advertisement
froleyks

temp.cpp

Dec 21st, 2020
891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(int argc, char *argv[])
  4. {
  5.   for (size_t i = 5; i--;){
  6.     std::cout << i << std::endl;
  7.   }
  8.   return 0;
  9. }
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement