|
WSB Chorzów - UnderWSB Informatyka i ekonometria.
|
Zobacz poprzedni temat :: Zobacz następny temat |
Autor |
Wiadomość |
skalp-slot
Administratorek
Dołączył: 13 Lut 2006
Posty: 29
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: sie biorą dzieci?
|
Wysłany: Pon 19:11, 13 Lut 2006 Temat postu: Zadania - schematy blokowe (Dr Kędzierski) |
|
|
Zadania - schematy blokowe (Dr Kędzierski)
[link widoczny dla zalogowanych]
[link widoczny dla zalogowanych]
Źródło: www.wuesbe.fora.pl
Post został pochwalony 0 razy
|
|
Powrót do góry |
|
|
|
|
Zobacz poprzedni temat :: Zobacz następny temat |
Autor |
Wiadomość |
skalp-slot
Administratorek
Dołączył: 13 Lut 2006
Posty: 29
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: sie biorą dzieci?
|
Wysłany: Pon 19:16, 13 Lut 2006 Temat postu: |
|
|
[link widoczny dla zalogowanych]
[link widoczny dla zalogowanych]
Ćwiczenia:
[link widoczny dla zalogowanych]
Ćwiczenia:
MINIMUM Z 2 LICZB
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, min;
printf("podaj dwie liczby\n");
scanf("%d %d", &a,&b);
min=(a<b)? a:b;
printf("minimum z %d oraz %d to %d", a, b, min);
system("pause");
}
----------------------------------------------------------
MINIMUM Z 2 LICZB
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, min;
printf("podaj dwie liczby\n");
scanf("%d %d", &a,&b);
if (a<b) printf("wieksza jest %d", b);
if (a>b) printf("wieksza jest %d", a);
if (a==b) printf("obie sa rowne %d", a);
//printf("minimum z %d oraz %d to %d", a, b, min);
system("pause");
}
----------------------------------------------------------------
MINIMUM Z 2 LICZB
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, min;
printf("podaj dwie liczby\n");
scanf("%d %d", &a,&b);
if (a<b) printf("minimum = %d", a);
else if (a>b) printf("nie = %d", b);
else printf("sa rowne %d", a);
//printf("minimum z %d oraz %d to %d", a, b, min);
system("pause");
}
---------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
float a, b, z;
printf("Podaj dwie liczby a i b\n");
scanf("%f %f", &a, &b);
if (a>b)
{
z=((a+b)*(a+b)) / (sqrt(a-b)) ;
printf("wynik %f\n", z);
}
else printf(" brak rozw\n" );
system("PAUSE");
//getchar();
//getchar();
return 0;
}
-------------------------------------------------------------
PIERWIATEK KWADRATOWY DOWOLNEJ LICZBY
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
float a,z,w;
printf("podaj a \n");
scanf("%f", &a);
z=sqrt(a);
w=pow(a,0.5);
printf("\n z=%f" , z);
printf("\n w=%f" , w);
system("pause");
}
-----------------------------------------------------------------
MAX Z 3 LICZB
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, c, min;
printf("podaj trzy liczby\n");
scanf("%d %d %d", &a,&b,&c);
if ((a>b)&&(a>c)) printf("max to %d", a);
if ((c>a)&&(c>b)) printf("max to %d", c);
if ((b>a)&&(b>c)) printf("max to %d", b);
system("pause");
}
-----------------------------------------------------------------
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, c, min;
printf("podaj trzy liczby\n");
scanf("%d %d %d", &a,&b,&c);
if ((a>b)&&(a>c)) printf("max to %d", a);
if ((c>a)&&(c>b)) printf("max to %d", c);
if ((b>a)&&(b>c)) printf("max to %d", b);
if ((a=b)&&(a=c)&&(b=c)) printf("wszystkie liczby sa rowne\n");
system("pause");
}
--------------------------------------------------------------------------
MIN Z 3 LICZB
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, c, min;
printf("podaj trzy liczby\n");
scanf("%d %d %d", &a,&b,&c);
if (a<b)
{
if (a<c) min = a;
else min = c;
}
else
{
if (b<c) min = b;
else min = c;
}
printf("min = %d", min);
system("pause");
}
---------------------------------------------------------------------------
SUMA KTOREJ PARY LICZB JEST WIEKSZA
#include <stdlib.h>
#include <stdio.h>
main()
{
int a, b, c, d, x1, x2;
printf("podaj cztery liczby\n");
scanf("%d %d %d %d", &a,&b,&c,&d);
x1=a+b;
x2=c+d;
if (x1>x2) printf("suma 2 pierwszych liczb jest wieksza %d", x1);
else printf("suma 2 nastepnych liczb jest wieksza %d", x2);
//printf("min = %d", min);
system("pause");
}
Post został pochwalony 0 razy
|
|
Powrót do góry |
|
|
Zobacz poprzedni temat :: Zobacz następny temat |
Autor |
Wiadomość |
skalp-slot
Administratorek
Dołączył: 13 Lut 2006
Posty: 29
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: sie biorą dzieci?
|
Wysłany: Pon 19:17, 13 Lut 2006 Temat postu: |
|
|
Ćwiczenia:
liczy pierwiastek
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int a, b;
float z,x;
printf("podaj x \n");
scanf("%f", &x);
if (x<=0) z=pow(x-1, 3);
if(x>0 && x<1)z=a*x+b;
if (x>=1) z=sqrt(x);
printf("wynik=%f\n",z);
system("pause");
return 0;
}
to samo tylko inaczej '
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int a, b;
float z,x;
printf("podaj x \n");
scanf("%f", &x);
if (x<=0) z=pow(x-1, 3);
else
if (x>0 && x<1) z=a*z+b;
else z=sqrt(x);
printf("wynik=%f\n",z);
system("pause");
return 0;
}
pokazuje kwartal na podstawie miesiaca
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int m;
printf("podaj m od 1 do 12 \n");
scanf("%d", &m);
switch (m)
{
case 1 :
case 2 :
case 3 : printf("1 kwartal \n"); break;
case 4 :
case 5 :
case 6 : printf("2 kwartal \n"); break;
case 7 :
case 8 :
case 9 : printf("3 kwartal \n"); break;
case 10 :
case 11 :
case 12 : printf("4 kwartal \n"); break;
default : printf("zla liczba \n"); break;
}
system("pause");
return 0;
}
to samo tylko krócej
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int m;
printf("podaj m od 1 do 12 \n");
scanf("%d", &m);
switch ((m-1)/3)
{
case 0 : printf("1 kwartal \n"); break;
case 1 : printf("2 kwartal \n"); break;
case 2 : printf("3 kwartal \n"); break;
case 3 : printf("4 kwartal \n"); break;
default : printf("zla liczba \n"); break;
}
system("pause");
return 0;
}
liczy sume liczb od 1 do n , n wprowadzamy
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int s,n,i;
printf("podaj n \n");
scanf("%d", &n);
s=0;
for(i=1; i<=n; i++)
s=s+i;
printf("suma= %d \n", s);
system("pause");
return 0;
}
to samo co wyzej z petla while
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int s,n,i;
printf("podaj n \n");
scanf("%d", &n);
s=0;
i=1;
while (i<=n)
{
s=s+i;
i++;
}
printf("suma= %d \n", s);
system("pause");
return 0;
}
z petla do while
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int s,n,i;
printf("podaj n \n");
scanf("%d", &n);
s=0;
i=1;
do
{
s=s+i;
i++;
}
while (i<=n);
printf("suma= %d \n", s);
system("pause");
return 0;
}
Post został pochwalony 0 razy
|
|
Powrót do góry |
|
|
Zobacz poprzedni temat :: Zobacz następny temat |
Autor |
Wiadomość |
skalp-slot
Administratorek
Dołączył: 13 Lut 2006
Posty: 29
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: sie biorą dzieci?
|
Wysłany: Pon 19:18, 13 Lut 2006 Temat postu: |
|
|
Ćwiczenia:
drukuje gwiazdeczki
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int n, i,j;
printf("podaj n\n");
scanf("%d", &n);
for(i=1; i<= n; i++)
{
for(j=1; j<=i; j++)
printf("*");
printf("\n");
}
system("pause");
return 0;
}
gwiazdeczki odwrotnie
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int n, i, j;
printf("podaj n\n");
scanf("%d", &n);
for(i=1; i<= n; i++)
{
for(j=1; j<=n-i; j++)
printf(" ");
for(j=1; j<=i; j++)
printf("*");
printf("\n");
}
system("pause");
return 0;
}
wprowadzanie do tablicy
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int n, i, tab[10];
printf("podaj wymiar tab\n");
scanf("%d", &n);
for(i=0; i<n; i++)
{
printf("podaj tab[%d]\n", i);
scanf("%d", &tab[i]);
}
for(i=0; i<n; i++)
printf("%d ", tab[i]);
system("pause");
return 0;
}
to co wyzej ale z generacja liczb
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int n, i, tab[10];
printf("podaj wymiar tab\n");
scanf("%d", &n);
for(i=0; i<n; i++)
{
// printf("podaj tab[%d]\n", i);
// scanf("%d", &tab[i]);
tab[i]=rand()%10;
}
for(i=0; i<n; i++)
printf("%d ", tab[i]);
system("pause");
return 0;
}
generuje liczby dla tablicy od a do b
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
int n, i, tab[10], a, b;
printf("podaj wymiar tab\n");
scanf("%d", &n);
printf("podaj a i b\n");
scanf("%d%d", &a,&b);
for(i=0; i<n; i++)
{
tab[i]=a+rand()%(b-a);
}
for(i=0; i<n; i++)
printf("%d ", tab[i]);
system("pause");
return 0;
}
generuje inne liczby za kazdym razem
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
main()
{
int n, i, tab[10], a, b;
printf("podaj wymiar tab\n");
scanf("%d", &n);
printf("podaj a i b\n");
scanf("%d%d", &a,&b);
srand(time(0));
for(i=0; i<n; i++)
{
tab[i]=a+rand()%(b-a);
}
for(i=0; i<n; i++)
printf("%d ", tab[i]);
system("pause");
return 0;
}
pokazuje liczby z tablicy i zlicza ile dodatnich ile ujemnych
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
main()
{
int n, i, a, b, iu, id;
iu=0;
id=0;
printf("podaj wymiar tab\n");
scanf("%d", &n);
int tab[n];
printf("podaj a i b\n");
scanf("%d%d", &a,&b);
for(i=0; i<n; i++)
{
tab[i]=a+rand()%(b-a);
}
for(i=0; i<n; i++)
{
if(tab[i]>0) id++;
if(tab[i]<0) iu++;
printf("%d \n" , tab[i]);
}
printf("id %d \n", id);
printf("iu %d \n", iu);
system("pause");
return 0;
}
Post został pochwalony 0 razy
|
|
Powrót do góry |
|
|
|
|
Możesz pisać nowe tematy Możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach
|
fora.pl - załóż własne forum dyskusyjne za darmo
Powered by phpBB © 2001, 2005 phpBB Group
|