Question
we have given two photos to place on a page , they have to be either next to each other or above each other ,
we have given two photos to place on a page , they have to be either next to each other or above each other , , and we have been given bunch of lines that we have to put in the right order in order to make the program work , please put the lines in order , also some of the lines are not useful , so we should only put those use able lines in the right order . please get it done and thank you so much. the lines are as such:
1 _ if (width1 + width2 <= page_width || height1 <= page_height && height2 <= page_height)
2_ if (width1 + width2 <= page_width && height1 <= page_height && height2 <= page_height)
3_ f (width1 + width2 <= page_width || height1 <= page_height || height2 <= page_height)
4_ else if (width1 <= page_width && width2 <= page_width && height1 + height2 <= page_height)
5_ else if (width1 <= page_width || width2 <= page_width && height1 + height2 <= page_height)
6_ else if (width1 <= page_width || width2 <= page_width || height1 + height2 <= page_height)
7_ cout<< "Place photos horizontally" << endl;
8_ cout << "Photos don't fit" << endl;
9_ cout << "Place photos vertically" << endl;
10_else
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started