Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int wczytaj (){
- int x;
- printf("podaj liczbe");
- scanf("%d",&x);
- return x;
- }
- int najwieksza (int x,int y,int z){
- int maxi;
- maxi=x;
- if (y>maxi)maxi=y;
- if (z>maxi)maxi=z;
- return maxi;
- }
- int main()
- {
- int a,b,c,d,e,f;
- a=wczytaj();
- b=wczytaj();
- c=wczytaj();
- d=wczytaj();
- e=wczytaj();
- f=wczytaj();
- printf("najwieksza z pierwsszych trzech to %d \n",najwieksza(a,b,c));
- printf("najwieksza z kolejnych trzech to %d \n",najwieksza(d,e,f));
- return b;
- }
- ////////zadanie 2//////////
- #include <stdio.h>
- #include <stdlib.h>
- int *tw_tab (int r){
- int i;
- int *wsk;
- wsk=malloc(r*sizeof(int));
- for (i=0;i<r;i++){
- printf("t[%d]=",i+1);
- scanf("%d",&wsk[i]);
- }
- return wsk;
- }
- int czy_istnieje (int x, int *t, int r) {
- int ind;
- ind = -1;
- int i;
- for (i=0;i<r;i++){
- if(t[i]==x){
- ind = i;
- break;
- };
- };
- return ind;
- }
- int main()
- {
- int *t1;
- int r1,x1,ind1;
- printf ("podaj rozmiar tablicy");
- scanf("%d",&r1);
- printf ("podaj szukaną waqrtosc");
- scanf("%d",&x1);
- t1 = tw_tab(r1);
- ind1 = czy_istnieje(x1,t1,r1) ;
- return ind1+1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement