Commit fbd5b0b5 by lilepp

tunnitoo

parent 1dcbdc53
Showing with 40 additions and 0 deletions
#include <stdio.h>
int main(void)
{
int S = 0;
int i = 0;
int N = 0;
do
{
printf("Sisesta N : ");
scanf("%d" ,&N);
}while(N <= 0);
int A[N];
do
{
printf("Sisesta element A[%d]",i);
scanf("%d" ,&A[i]);
i++;
}while(i < N);
i = 0;
do
{
if(A[i] > 0)
{
S = S + A[i];
}
i++;
}
while(i < N);
printf("S tulemus : %d \n", S);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment