Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
viakul
/
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
9667aaf9
authored
Oct 15, 2018
by
viakul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
9ac14232
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
lab7/primenumber.c
lab7/primenumber.c
0 → 100644
View file @
9667aaf9
#include <stdio.h>
int
main
()
{
int
matrix
[
5
][
5
];
int
i
,
j
,
k
;
for
(
i
=
0
;
i
<
5
;
i
++
){
for
(
j
=
0
;
j
<
5
;
j
++
){
printf
(
"insert the value for [%d %d]
\n
"
,
i
+
1
,
j
+
1
);
scanf
(
"%d"
,
&
matrix
[
i
][
j
]);
}
}
for
(
i
=
0
;
i
<
5
;
i
++
){
j
=
0
;
while
(
j
<
5
){
k
=
2
;
if
(
k
>=
matrix
[
i
][
j
]){
printf
(
"matrix[%d][%d] is %d
\n
"
,
i
+
1
,
j
+
1
,
matrix
[
i
][
j
]);
}
while
(
k
<
matrix
[
i
][
j
]){
if
(
matrix
[
i
][
j
]
%
k
==
0
){
break
;
}
k
++
;
if
(
k
==
matrix
[
i
][
j
]){
printf
(
"matrix[%d][%d] is %d
\n
"
,
i
+
1
,
j
+
1
,
matrix
[
i
][
j
]);
}
}
j
++
;
}
}
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