Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gürcan Güleç
/
iag0581
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
78a3e2df
authored
Sep 24, 2016
by
Gürcan Güleç
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Committing homework files
parent
7137de3c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
0 deletions
labs/dowhile.c
labs/forloop.c
labs/whilebreak.c
labs/dowhile.c
0 → 100644
View file @
78a3e2df
#include <stdio.h>
int
main
()
{
int
countDown
=
11
;
do
{
countDown
--
;
printf
(
"The value of countDown is %d
\n
"
,
countDown
);
}
while
(
countDown
>
0
);
return
0
;
}
labs/forloop.c
0 → 100644
View file @
78a3e2df
#include <stdio.h>
int
main
()
{
int
sum
=
0
;
for
(
int
number
=
0
;
number
<=
10
;
number
++
)
//Initialize for loop
{
printf
(
"The value of number is %d
\n
"
,
number
);
//Print out the value of i
sum
=
sum
+
number
;
}
printf
(
"The sum of all the numbers is %d
\n
"
,
sum
);
return
0
;
}
labs/whilebreak.c
0 → 100644
View file @
78a3e2df
#include <stdio.h>
int
main
()
{
int
number
=
0
;
while
(
number
<=
10
)
{
printf
(
"A = %d
\n
"
,
number
);
if
(
number
==
3
)
{
printf
(
"Stopping here cuz my favorite number is %d
\n
"
,
number
);
break
;
}
number
++
;
}
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment