ItzEdInYourBed

square.cpp

May 18th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5.   int i = 0;
  6.   int square = 0;
  7.  
  8.   // Write a while loop here:
  9.   while (i < 10) {
  10.     square = i * i;
  11.     std::cout << i << " " << square << "\n";
  12.     i++;
  13.   }
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. }
Add Comment
Please, Sign In to add comment