/* Rectange Perimeter * * Rectangle Perimeter is a program that caulculates * the perimeter of a rectangle based on the provided * length and width. */ #include #include int main() { float l, w; /* Length and Width */ printf("Rectangle Peremiter\n"); printf("Length: "); scanf("%f", &l); printf("width: "); scanf("%f", &w); printf("Perimeter: %f\n", 2 * (l + w)); /* Peremiter = Length x Width */ return 0; }