Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- main()
- {
- float raio ;
- printf ("Raio? ");
- scanf ("%f", &raio);
- printf ("Perímetro = %0.4f\n", raio * 2 * 3.1416);
- printf ("Área = %0.4f\n", 3.1416 * raio * raio) ;
- return 0 ;
- }
Advertisement
Add Comment
Please, Sign In to add comment