#include #include int main(){ float r; float P, O; printf("Unesite poluprecnik: "); scanf("%f", &r); O = 2*r*M_PI; P = r*r*M_PI; printf("Obim je %f, a povrsina %f\n", O, P); return 0; }