Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int M,i;
- float wynik, odchylenie, wariancja, srednia;
- printf ("Ile liczb chcesz wprowadzic?\n");
- scanf ("%i", &M);
- float tablica[M];
- for (i=0; i<M; i++)
- {
- printf ("Wprowadz wynik: ");
- scanf ("%i", &wynik);
- tablica[i]=wynik;
- printf ("Tablica [%d] = %d\n", i, wynik);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement