-
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 #32
Open
C-ice-y
wants to merge
35
commits into
luckymark:master
Choose a base branch
from
C-ice-y:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
bec1370
完成了running letter
3f73640
Level 1 Exercise 2
C-ice-y 2ac63b7
Level 1Exercise 3
C-ice-y bf75807
Level 1 Exercise 4
C-ice-y e26d96d
Level1 Exercise 1 update
C-ice-y 5f014e1
level1 Exercise5
C-ice-y 2356fcb
Update README.md
C-ice-y 4cdf1fc
Level1 Exercise6
C-ice-y bd24ae4
Update L1T4.cpp
C-ice-y 1ec64ee
Update L1T5.cpp
C-ice-y 9da8788
Update L1T3.cpp
C-ice-y 549129c
Exercise L1T8
C-ice-y 5f1fe82
Update README.md
C-ice-y 3f3305a
Add files via upload
C-ice-y 7e340fa
Add files via upload
C-ice-y d214aba
Add files via upload
C-ice-y dc210c8
Add files via upload
C-ice-y 2b737f7
Create FiveChess
C-ice-y 2530e96
Delete FiveChess
C-ice-y c9d8dfc
Add files via upload
C-ice-y da9cf3b
Delete 五子棋txt.txt
C-ice-y fbcfb3e
Delete thoughts of WUZIQI.txt
C-ice-y d3243b1
Add files via upload
C-ice-y ad0faa3
Add files via upload
C-ice-y 244422f
Delete mazeutf.txt
C-ice-y 67c075d
Add files via upload
C-ice-y 517d040
Delete 推箱子utf.txt
C-ice-y da4f9c9
Add files via upload
C-ice-y 9412054
Delete 链表.txt
C-ice-y 9fae957
Add files via upload
C-ice-y 650d8d0
Delete utf超市.txt
C-ice-y ad232b9
Add files via upload
C-ice-y d3ec29a
Add files via upload
C-ice-y 07311d7
Update 五子棋txt.txt
C-ice-y a8d0c59
Update 五子棋txt.txt
C-ice-y File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <windows.h> | ||
#define Length 20 | ||
|
||
int main () | ||
{ | ||
int a=0; | ||
int b=1; | ||
while(1) | ||
{ | ||
a+=b; | ||
system("cls"); | ||
int i=0; | ||
while(i<a) | ||
{ | ||
printf(" "); | ||
i++; | ||
} | ||
printf("H"); | ||
Sleep(100); | ||
if(a==Length) | ||
{ | ||
b=-1; | ||
} | ||
if(a==0) | ||
{ | ||
b=1; | ||
} | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
一般常量用全大写