Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
2
2024ustc-jianmu-compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
compiler_staff
2024ustc-jianmu-compiler
da409e475bdd22ca5b02885a8559053eefd42ef8
da409e475bdd22ca5b02885a8559053eefd42ef8
Switch branch/tag
2024ustc-jianmu-compiler
tests
2-ir-gen
warmup
c_cases
while.c
Find file
Normal view
History
Permalink
while.c
139 Bytes
Edit
Web IDE
Newer
Older
Merge branch 'lab2-publish'
lxq
committed
Oct 07, 2024
1
2
3
4
5
6
7
8
9
10
11
int
main
()
{
int
a
;
int
i
;
a
=
10
;
i
=
0
;
while
(
i
<
10
)
{
i
=
i
+
1
;
a
=
a
+
i
;
}
return
a
;
}