10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
for (int i = 1; i <= 10; i += 2) // Compliant
|
|
{
|
|
//...
|
|
}
|
|
----
|