Commit c92eab4b by siilin

Upload New File

parent 41ea79a4
Showing with 47 additions and 0 deletions
#include <stdio.h>
#include <stdio.h>
int main(void)
{
int S = 0;
int i = 0;
int N = 0;
// int A = 0;
do
{
printf("Sisesta N:");
scanf("%d" ,&N);
}while(N <=0);
int A[N];
do
{
printf("Sisesta A[%d] : ", i);
scanf("%d" ,&A[i]);
i++;
if(i < N - 1)
{
i = 0;
if(A[i] > 0)
{
S = S + A[i];
}
else
{
printf("Arv peab olema positiivne \n");
}
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