-
Notifications
You must be signed in to change notification settings - Fork 78
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
完成了running letter #39
base: master
Are you sure you want to change the base?
Conversation
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.
赶紧提交新的代码哈
{ | ||
for(i=0;i<WIDTH;i++) | ||
{ | ||
for(j=0;j<=i;j++)printf(" "); |
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.
缩进不对
system("cls"); | ||
} | ||
for(i=WIDTH-1;i>=0;i--) | ||
{ |
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.
这两段代码有点像,请尝试消除重复部分
@@ -0,0 +1,22 @@ | |||
#include<stdio.h> |
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.
源代码的文件后缀应该是 .c
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.
继续加油哈
test.txt
Outdated
@@ -0,0 +1,6 @@ | |||
#include<stdio.h> |
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.
这个文件删掉吧
level1/p06_Goldbach/Goldbach.c
Outdated
} | ||
for(i=2;i<=100;i++) | ||
if(i%2==0){ | ||
for(j=2;j<=50;j++) |
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.
缩进混乱了
1).exe .o等build生成的文件,一般不放到git中,浪费空间,影响下载文件的速度 |
level 1-->running letter R