Skip to content
Snippets Groups Projects
Commit f6d88d2f authored by Jakub Walas's avatar Jakub Walas
Browse files

Upload New File

parent e33b0616
No related merge requests found
#include <stdio.h>
#include <math.h>
int main(){
printf("Podaj promien kola\n");
float x;
scanf("%f",&x);
printf("Pole kola to %.2f\n",x*x*M_PI);
printf("Obwod kola to %.2f\n",x*M_PI*2);
}
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