Advertisement
Cieslin

PPTabliceDynamiczne

Dec 4th, 2017
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.91 KB | None | 0 0
  1. // ConsoleApplication10.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <stdlib.h>
  6. #include <malloc.h>
  7. #include <Windows.h>
  8. int main()
  9. {
  10.     double *tab, max=0, min=0;
  11.     int wymiar, pmax=0, pmin=0;
  12.     printf("Podaj wymiar: ");
  13.     scanf_s("%d", &wymiar);
  14.     tab = (double*)malloc(wymiar * sizeof(double)); // ile pamieci przeznaczysz na swoje dane
  15.     ////////////////////////////////////////////////////////////////////
  16.     for (int i = 0; i < wymiar; i++)
  17.     {
  18.         printf("T[%d] = ", i + 1);
  19.         scanf_s("%lf", &tab[i]);
  20.     }
  21.     min = tab[0];
  22.     max = tab[0];
  23.     for (int i = 0; i < wymiar; i++)
  24.     {  
  25.         if (max < tab[i])
  26.         {
  27.             max = tab[i];
  28.             pmax = i + 1;
  29.         }
  30.         if (min > tab[i])
  31.         {
  32.             min = tab[i];
  33.             pmin = i + 1;
  34.         }
  35.     }
  36.     printf("Max wynosi: %.2lf na pozycji: %d\n", max, pmax );
  37.     printf("Min wynosi: %.2lf na pozycji: %d\n", min, pmin);
  38.    
  39.     system("PAUSE");
  40.     return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement