adding curly brackets

This commit is contained in:
Jidong Xiao
2025-01-31 13:45:25 -05:00
committed by JamesFlare1212
parent b9ef6c783b
commit c1f2ef05a7

View File

@@ -119,9 +119,11 @@ For each version below, give an order notation estimate of the number of operati
1 1
```cpp ```cpp
int count=0; int count=0;
for (int i=0; i<n; ++i) for (int i=0; i<n; ++i){
for (int j=0; j<n; ++j) for (int j=0; j<n; ++j){
++count; ++count;
}
}
``` ```
2. 2.