Skip to content
Snippets Groups Projects
Commit 31064edb authored by Kacper Śmieżewski's avatar Kacper Śmieżewski
Browse files

zad2

parent 3f2d2f06
Branches
No related merge requests found
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Podaj promien: ");
float x=0;
scanf("%f",&x);
printf("Pole kola: %f", 3.14*x*x);
printf("Obwod kola: %f", 2*3.14*x);
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