Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
sameis
/
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
73f4e9c8
authored
Sep 26, 2017
by
sameis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tunnitöö
parent
989813ed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
0 deletions
PR4/PR4.c
PR4/PR4_2.c
PR4/python1.py
PR4/PR4.c
0 → 100644
View file @
73f4e9c8
#include <stdio.h>
int
n
=
4
;
int
m
=
3
;
int
A
[
4
][
3
]
=
{{
5
,
-
3
,
-
12
},{
2
,
3
,
-
2
},{
1
,
-
6
,
8
},{
-
4
,
-
13
,
4
}};
void
negSummad
(
void
);
void
trykiMaatriks
(
int
n
,
int
m
,
int
[
n
][
m
]);
int
main
(
void
)
{
trykiMaatriks
(
n
,
m
,
A
);
negSummad
();
return
0
;
}
void
trykiMaatriks
(
int
n
,
int
m
,
int
A
[
n
][
m
])
{
int
i
=
0
;
int
j
=
0
;
while
(
i
<
n
)
{
j
=
0
;
while
(
j
<
m
)
{
printf
(
"%4d"
,
A
[
i
][
j
]);
j
++
;
}
printf
(
"
\n
"
);
i
++
;
}
}
void
negSummad
(
void
)
{
int
i
=
0
;
int
j
=
0
;
int
negsum
[
m
];
printf
(
"Tulpade negatiivsete elementide summad on:
\n
"
);
while
(
j
<
m
)
{
i
=
0
;
negsum
[
j
]
=
0
;
while
(
i
<
n
)
{
if
(
A
[
i
][
j
]
<
0
)
negsum
[
j
]
+=
A
[
i
][
j
];
i
++
;}
printf
(
"%4d"
,
negsum
[
j
]);
j
++
;
}
printf
(
"
\n
"
);
}
PR4/PR4_2.c
0 → 100644
View file @
73f4e9c8
#include <stdio.h>
int
n
=
4
;
int
rowSums
[
4
];
int
i
;
int
j
;
int
rowsum
=
0
;
int
A
[
4
][
4
]
=
{{
2
,
3
,
-
4
,
3
},
{
1
,
2
,
-
3
,
0
},
{
1
,
2
,
3
,
4
},
{
1
,
2
,
3
,
4
}};
int
main
(
void
)
{
for
(
i
=
0
;
i
<
n
;
i
++
)
{
rowsum
=
0
;
for
(
j
=
0
;
j
<
n
;
j
++
)
{
if
(
A
[
i
][
j
]
>
0
)
{
rowsum
+=
A
[
i
][
j
];
}
}
rowSums
[
i
]
=
rowsum
;
}
for
(
i
=
0
;
i
<
4
;
i
++
)
{
printf
(
"%d
\n
"
,
rowSums
[
i
]);
}
}
PR4/python1.py
0 → 100644
View file @
73f4e9c8
#Tekstis antud v22rtused
n
=
4
processRowsBefore
=
2
#Algv22rtused
A
=
[[
2
,
3
,
-
4
,
3
],
[
1
,
2
,
-
3
,
0
],
[
1
,
2
,
3
,
4
,],
[
1
,
2
,
3
,
4
]]
#Ridade positiivsete elementide leidmine
rowSums
=
[]
for
row
in
range
(
processRowsBefore
-
1
):
rowSum
=
0
for
col
in
range
(
n
):
if
A
[
row
][
col
]
>
0
:
rowSum
+=
A
[
row
][
col
]
rowSums
.
append
(
rowSum
)
#Tulemused
for
i
in
range
(
len
(
rowSums
)):
print
(
str
(
rowSums
[
i
]))
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