Commit f1a78a47 authored by 李安沛's avatar 李安沛

change i from 0 to 1

parent 2a947819
...@@ -3,7 +3,7 @@ int main(){ ...@@ -3,7 +3,7 @@ int main(){
printf("This is the first line added by the teacher .\n"); printf("This is the first line added by the teacher .\n");
// add comment // add comment
// Here is a bug I fixed! // Here is a bug I fixed!
int i = 0; int i = 1;
for(int j =0;j<10;j++){ for(int j =0;j<10;j++){
printf("i=%d\n",i); printf("i=%d\n",i);
i=4*i+2; i=4*i+2;
......
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