Skip to content
Snippets Groups Projects
Commit e5ad6d1c authored by Stanisław Pokora's avatar Stanisław Pokora
Browse files

Upload New File

parent 29c4da00
Branches
No related merge requests found
lab5aa.c 0 → 100644
#include <stdio.h>
#include <stdlib.h>
int main(){
int x;
float avg = 0;
int tab[5] = {0,0,0,0,0};
for(int i = 0;i<5;i++){
printf("Wprowadz liczbe:\n");
scanf("%i",&x);
tab[i] = x;
avg+=x;
}
float srednia = avg/5;
printf("Srednia tych liczb wynosi %.2f\n", srednia);
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment