Skip to content
Snippets Groups Projects
Commit 586e2ba3 authored by Mikołaj Warenycia's avatar Mikołaj Warenycia
Browse files

Upload New File

parent 1da3e0b5
Branches
No related merge requests found
#include <stdio.h>
# include <stdlib.h>
float main(){
float radi;
float obwod;
float pole;
printf("podaj promien:\n");
scanf("%f",&radi);
obwod=2*3.1415*radi;
pole=3.1415*radi*radi;
printf("Obliczono promien: %f\n",obwod);
printf("Obliczono pole: %f\n",pole);
return 0;
}
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