Study results from Stroustrup's PPP3 book.

This commit is contained in:
Zed A. Shaw 2024-05-01 20:26:41 -04:00
parent 6363457d0f
commit 7a1093f982
10 changed files with 579 additions and 1 deletions

11
PPP3/ex03.cpp Normal file
View file

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