-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
段林林level 1前五题 #38
base: master
Are you sure you want to change the base?
段林林level 1前五题 #38
Conversation
This reverts commit e23ecad137f82eb3ba42ccb66f1f4d009095abf5.
This reverts commit 7df5774.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
先看到这里吧
practices/c/level0/0-9.c
Outdated
} | ||
|
||
for(i=1;i<=9;i++){ | ||
if(number[i]==0){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缩进一格太小
practices/c/level0/10000—hello.c
Outdated
printf("Hello!\n"); | ||
} | ||
|
||
return 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缩进对齐
practices/c/level0/13的倍数判断.c
Outdated
scanf("%d",&n); | ||
|
||
if (0==n%13) | ||
printf("%d ÊÇ13µÄ±¶Êý",n); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缩进的规格要保持一致,这叫漂亮的代码风格
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
嗯嗯,谢谢老师,马上改
No description provided.