Advertisement
ItzEdInYourBed

steps.cpp

May 23rd, 2020
1,279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5.   // Output from 1 to steps:
  6.  
  7.   int steps = 10;
  8.  
  9.   for (int i = 0; i <= steps; i++) {
  10.    
  11.     std::cout << "Step #";
  12.     std::cout << i << "\n";
  13.    
  14.   }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement