1.

Compute the algorithm, flowchart and BASIC program to calculate the area of agriculture field of rectangle length 50m and width 30m.

Answer»

Answer:

#include

int main()

{

int width=5;

int HEIGHT=10;

int AREA=width*height;

PRINTF("Area of the RECTANGLE=%d",area);

}



Discussion

No Comment Found