document.write( "Question 886942: write a program to find wheather the area of the rectangle is greathe then its perimeter \n" ); document.write( "
Algebra.Com's Answer #536255 by josgarithmetic(39617)\"\" \"About 
You can put this solution on YOUR website!
Assign some variables for input, x and y. You could choose other variable names. You have formulas, perimeter is \"2x%2B2y\", and area is \"xy\". You want a program to check for \"xy%3E2x%2B2y\", in a double alternative decision structure. You could assign the values from the formulas to process variables but the output would/could be a display like \"Yes, Area Greater\" or \"No, Area not Greater.\" \n" ); document.write( "
\n" );