simple-cpp-game-study/PPP3/ex03.cpp
2024-05-01 20:26:41 -04:00

11 lines
143 B
C++

#include <iostream>
using namespace std;
int main() {
int i = 0;
while(i < 100) {
cout << i << '\t' << i * i << '\n';
++i;
}
}