15 04 2013


Z.1 Obliczyć i wyświetlić sumę liczb z przedziału <1,100>

#include
#include

int main(int argc, char *argv[])
{
int x, s, n, i;

printf("podaj ilosc liczb:");
scanf("%d", &n);
s=0;
for(i=0;i {
printf("podaj liczbe:");
scanf("%d", &x);
if (x>=0&&x<=100)
s=s+x;
}

printf("\nSuma wszystkich liczb: %.2d", s);


system("PAUSE");
return 0;
}

Z.2 Obliczyć i wyświetlić sumę kwadratów liczb

#include
#include

int main(int argc, char *argv[])
{
int x, s, n, i;

printf("podaj ilosc liczb:");
scanf("%d", &n);
s=0;
for(i=1;i<=n;i++)
{
printf("podaj liczbe:");
scanf("%d", &x);
s=s+x*x;
}

printf("\nSuma kwadratow wszystkich liczb: %.2d", s);


system("PAUSE");
return 0;
}

Z.3 Obliczyć i wyświetlić iloczyn co 2 liczby (zaczyamy od 1)

#include
#include

int main(int argc, char *argv[])
{
int x, s, n, i;

printf("podaj ilosc liczb:");
scanf("%d", &n);
s=1;
for(i=1;i<=n;i++)
{
printf("podaj liczbe:");
scanf("%d", &x);
if (i%2==1)
s=s*x;
}

printf("\nIloczyn co 2 liczby: %.2d", s);


system("PAUSE");
return 0;
}

Z.4 Obliczyć i wyświetlić sumę liczb parzystych i sumę nieparzystych.

#include
#include

int main(int argc, char *argv[])
{
int x, s, n, i, t;

printf("podaj ilosc liczb:");
scanf("%d", &n);
s=0;
t=0;
for(i=1;i<=n;i++)
{
printf("podaj liczbe:");
scanf("%d", &x);
if (i%2==1)
s=s+x;
else t=t+x;
}

printf("\nSuma liczb parzystych: %.2d", s);
printf("\nSuma liczb nieparzystych: %.2d", t);


system("PAUSE");

Z.5 Obliczyć i wyświetlić średnia arytm liczb ujemnych.
#include
#include

int main(int argc, char *argv[])
{
int x, s, n, i, t, w;

printf("podaj ilosc liczb:");
scanf("%d", &n);
s=0;
t=0;
for(i=1;i<=n;i++)
{
printf("podaj liczbe:");
scanf("%d", &x);
if (x<0)
{
s=s+x;
t=t+1;
}
}
if(t>0)
{
w=s/t;
printf("\nsrednia liczb ujemnych: %d", w);
}
else printf("\nblad");

system("PAUSE");
return 0;
}

Z.6 Wyświetlić max liczbe

#include
#include

int main(int argc, char *argv[])
{
float x, n, i, k, max;

printf("podaj ilosc liczb:");
scanf("%f", &n);
printf("podaj liczbe x:");
scanf("%f", &x);
max=x;

for(i=2;i<=n;i++)
{
printf("podaj liczbe x:");
scanf("%f", &x);
if (x>max)
max=x;
}


printf("\nMaksymalna liczba: %f", max);


system("PAUSE");
return 0;
}

Wyszukiwarka

Podobne podstrony:
Cennik zasobniki ciepła 15 04 2013
Literaturoznawstwo (15 04 2013)
22 04 2013
Wykład z Ch Organicznej 15 01 2013
17 04 2013 Anatomia
15 04 2014 Pietrzyk
15 04 Pilarki lancuchowe
prezentacja 04 2013
Zad 5, 15 10 2013
15 04 08 sem VIII
15 04 08 sem VIII
zadania 04 2013
programy 18 04 2013

więcej podobnych podstron