Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ilahma
/
iax0583
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7723a77b
authored
Dec 17, 2018
by
ilahma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
0e3aa671
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
0 deletions
Lab3/lab3_2.c
Lab3/lab3_2.c
0 → 100644
View file @
7723a77b
#include <stdio.h>
int
main
()
{
int
N
=
0
;
int
i
=
0
;
int
first
=
0
;
int
second
=
1
;
int
temp
;
printf
(
"Please enter size of array
\n
"
);
scanf
(
"%d"
,
&
N
);
int
a
[
N
];
a
[
0
]
=
0
;
for
(
i
=
0
;
i
<
N
;
i
++
)
{
if
(
i
<
2
)
{
a
[
i
]
=
i
;
}
else
{
temp
=
first
+
second
;
first
=
second
;
second
=
temp
;
a
[
i
]
=
temp
;
}
printf
(
"%d
\n
"
,
a
[
i
]);
}
printf
(
"
\n
"
);
puts
(
"All odd numbers
\n
"
);
for
(
i
=
0
;
i
<
N
;
i
++
)
{
if
(
a
[
i
]
%
2
==
1
)
{
printf
(
"%d
\n
"
,
a
[
i
]);
}
}
printf
(
"
\n
"
);
puts
(
"All even numbers
\n
"
);
for
(
i
=
0
;
i
<
N
;
i
++
)
{
if
(
a
[
i
]
%
2
==
0
)
{
printf
(
"%d
\n
"
,
a
[
i
]);
}
}
printf
(
"
\n
"
);
puts
(
"
\n
BACKWARDS
\n
"
);
for
(
i
=
(
N
-
1
);
i
>=
0
;
i
--
)
{
printf
(
"%d
\n
"
,
a
[
i
]);
}
printf
(
"
\n
"
);
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