Commit 637230a5 authored by Luhan Wang's avatar Luhan Wang

add a loop

parent aca22aca
......@@ -3,6 +3,12 @@ int main(){
printf("This is the first line added by the teacher .\n");
// add comment
// Here is a bug I fixed!
int i = 0;
for(int j =0;j<10;j++){
printf("i=%d\n",i);
i=i+2;
}
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment