This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/C8/ex7.c
2023-10-03 12:50:05 +01:00

26 lines
587 B
C

#include <stdio.h>
#include <math.h>
int main() {
int rc; // used to check return codes of scanf
float radius, height;
printf("Enter radius: ");
rc = scanf("%f", &radius);
// scanf returns number of scanned items
if (rc != 1) {
printf("Please enter an positive real integer or decimal\n");
return 1;
}
printf("Enter height: ");
rc = scanf("%f", &height);
// scanf returns number of scanned items
if (rc != 1) {
printf("Please enter an positive real integer or decimal\n");
return 1;
}
printf("Surface area: %f\n", 2*M_PI*radius*radius + 2*M_PI*radius*height);
}