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
9a2bc262
authored
Dec 02, 2016
by
Gürcan Güleç
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing some lines on number.c
parent
9442141a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
labs/lab10/number.c
labs/lab10/number.c
View file @
9a2bc262
...
@@ -14,17 +14,14 @@
...
@@ -14,17 +14,14 @@
int
main
()
int
main
()
{
{
// creating the file pointers we are going to need
// creating the file pointers we are going to need
FILE
*
fp
=
fopen
(
"bad_input.txt"
,
"r"
);
FILE
*
fp
=
fopen
(
"bad_input.txt"
,
"r"
);
FILE
*
ep
=
fopen
(
"even.txt"
,
"w"
);
FILE
*
ep
=
fopen
(
"even.txt"
,
"w"
);
FILE
*
op
=
fopen
(
"odd.txt"
,
"w"
);
FILE
*
op
=
fopen
(
"odd.txt"
,
"w"
);
// char string we are going to use with fgets function
// char string we are going to use with fgets function
char
number
[
10
];
char
number
[
10
];
// checking if the files was opened
// checking if the files was opened
if
(
fp
==
NULL
||
ep
==
NULL
||
op
==
NULL
)
if
(
fp
==
NULL
||
ep
==
NULL
||
op
==
NULL
)
{
{
printf
(
"File was not opened.
\n
"
);
printf
(
"File was not opened.
\n
"
);
...
@@ -34,7 +31,6 @@ int main()
...
@@ -34,7 +31,6 @@ int main()
printf
(
"File was opened.
\n
"
);
printf
(
"File was opened.
\n
"
);
// creating a loop to check the lines
// creating a loop to check the lines
while
(
fgets
(
number
,
10
,
fp
)
!=
NULL
)
while
(
fgets
(
number
,
10
,
fp
)
!=
NULL
)
{
{
int
size
;
int
size
;
...
@@ -48,7 +44,6 @@ int main()
...
@@ -48,7 +44,6 @@ int main()
}
}
// making sure the values are numbers only
// making sure the values are numbers only
for
(
int
i
=
size
-
1
;
i
>=
0
;
i
--
)
for
(
int
i
=
size
-
1
;
i
>=
0
;
i
--
)
{
{
...
@@ -63,12 +58,10 @@ int main()
...
@@ -63,12 +58,10 @@ int main()
if
(
size
>
0
)
if
(
size
>
0
)
{
{
// converting string into an integer
// converting string into an integer
myNumber
=
atoi
(
number
);
myNumber
=
atoi
(
number
);
// finding out which ones are odd and which ones are even
// finding out which ones are odd and which ones are even
// and writing them to files
// and writing them to files
if
(
myNumber
%
2
)
if
(
myNumber
%
2
)
{
{
fprintf
(
op
,
"%d
\n
"
,
myNumber
);
fprintf
(
op
,
"%d
\n
"
,
myNumber
);
...
@@ -81,7 +74,6 @@ int main()
...
@@ -81,7 +74,6 @@ int main()
}
}
// closing the files
// closing the files
fclose
(
fp
);
fclose
(
fp
);
fclose
(
ep
);
fclose
(
ep
);
fclose
(
op
);
fclose
(
op
);
...
...
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