8 lines
115 B
C
8 lines
115 B
C
int main() {
|
|
int num = 0;
|
|
for (int i = 0; i < 10; i += 1) {
|
|
num = num + 1;
|
|
}
|
|
return num;
|
|
}
|