Toggle navigation
Images.Elk.pl
19 10 2006
Zad 1
#include
int main ()
{
int i, n;
float a, b, s=0;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i<=n-1; i++)
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
s=s+(a/(i+1));
a=a+i;
}
b=s;
printf("Suma wynosi: %f\n", b);
return 0;
}
Zad 2
#include
int main ()
{
int i, n;
float a, b, s=0;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i<=n-1; i++)
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
s=s+(a/(i+1));
a=a+i;
}
b=s;
printf("Suma wynosi: %f\n", b);
return 0;
}
Zad 3
#include
int main ()
{
int i, j, n;
float a, b=0, s=0;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i<=n-1; i++)
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
s=s+a;
b=s/(i+1);
printf("Suma wynosi b[%d]: %f\n", i, b);
}
return 0;
}
Zad 4
#include
int main ()
{
int i, n;
float a, s=0;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
if (i % 2 == 0)
s=s+a;
}
printf("Suma wynosi: %f\n", s);
return 0;
}
Zad 5
#include
int main ()
{
int i, n;
float a, s=1;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
if (i % 2 != 0)
s=s*a;
}
printf("Suma wynosi: %f\n", s);
return 0;
}
Zad 6
#include
int main ()
{
int i, n, ind=0, k=1;
float a, b;
printf("Podaj ilosc elementow: ");
scanf("%d", &n);
for (i=0; i
{
printf("Podaj element nr a[%d]: ", i);
scanf("%f", &a);
if (i == ind)
{
b=b+a;
k++;
ind=ind+k;
}
}
printf("Suma wynosi: %f\n", b);
return 0;
}
Wyszukiwarka
Podobne podstrony:
Programowanie C laborki C 19 10 2006
173 19 (10)
Systemowe spojrzenie na problem przemocy w rodzinie, 19 10 2010
3 Systemy Operacyjne 19 10 2010 Klasyfikacja Systemów Operacyjnych2
10 2006 wkladki topikowe
141 19 (10)
105 19 (10)
Normy i przepisy prawne Michu 29 10 2006
4 Ustawa z dnia 19 10 1991 o gospodarce nieruchomościami rolnymi skarbu państwa
19 (10)
19 10
więcej podobnych podstron