bingxuan9112

debugD

Apr 9th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <iostream>
  2. #define SQUARE(x) x*x
  3.  
  4. signed main(){
  5.     int n = 0;
  6.     while(n < 100){
  7.         cout << SQUARE(n++) << endl;
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment