mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
18 lines
188 B
C++
18 lines
188 B
C++
#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;
|
|
}
|
|
|