Files
seer/tests/hello482/hello482.cpp
T

18 lines
188 B
C++
Raw Normal View History

2026-07-13 19:02:58 -05:00
#include <string>
#include <iostream>
int main () {
double a[100];
double b[100];
for (int i=0; i<100; i++) {
a[i] = i;
b[i] = i*i;
}
return 0;
}