Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ConsoleApplication10.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <stdlib.h>
- #include <malloc.h>
- #include <Windows.h>
- int main()
- {
- double *tab, max=0, min=0;
- int wymiar, pmax=0, pmin=0;
- printf("Podaj wymiar: ");
- scanf_s("%d", &wymiar);
- tab = (double*)malloc(wymiar * sizeof(double)); // ile pamieci przeznaczysz na swoje dane
- ////////////////////////////////////////////////////////////////////
- for (int i = 0; i < wymiar; i++)
- {
- printf("T[%d] = ", i + 1);
- scanf_s("%lf", &tab[i]);
- }
- min = tab[0];
- max = tab[0];
- for (int i = 0; i < wymiar; i++)
- {
- if (max < tab[i])
- {
- max = tab[i];
- pmax = i + 1;
- }
- if (min > tab[i])
- {
- min = tab[i];
- pmin = i + 1;
- }
- }
- printf("Max wynosi: %.2lf na pozycji: %d\n", max, pmax );
- printf("Min wynosi: %.2lf na pozycji: %d\n", min, pmin);
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement