You are on page 1of 3

1.

ANALYSIS
Problem Input;
float square meter
float square yards
Problem Output;
Float square yards
Formula ;
Square yards=square meter *square yards

ALGORITHM
1.Get the square meter equivalent and square yard equivalent .
2.Compute their equivalent by using this formula square meter times square
yard.
3.Display the total square yard.

PSEUDO CODE
Begin:
Squre meter=0
Squre yard=1.9599
Total yard=0
INPUT
Total square yard=square meter*square yard
OUTPUT
Total square yard
START

FLOW CHART

Square_meter
Square_yard

#include<stdio.h>
int main()
{
float square_meter;
float square_yard;
float total in square_yard;

printf("please enter the square_meter");


scanf("%f",square_meter);
printf("square_yard is 1.9599");
total in square_yard=(square_meter*square_yard);
pritf("amount in square_meter is%f",square_yard);

getch ();
return 0;
}

You might also like