POJ 2707

来源:互联网 发布:网络安全法亮点解读 编辑:程序博客网 时间:2024/05/16 20:29

Description

What do you do if you need to copy a 560x400mm image onto a standard sheet of US letter-size paper (which is about 216x280mm), while keeping the image as large as possible? You can rotate the image 90 degrees (so that it is in "landscape" mode), then reduce it to 50% of its original size so that it is 200x280mm. Then it will fit on the paper without overlapping any edges. Your job is to solve this problem in general.

Input

The input consists of one or more test cases, each of which is a single line containing four positive integers A, B, C, and D, separated by a space, representing an AxBmm image and a CxDmm piece of paper. All inputs will be less than one thousand. Following the test cases is a line containing four zeros that signals the end of the input.

Output

For each test case, if the image fits on the sheet of paper without changing its size (but rotating it if necessary), then the output is 100%. If the image must be reduced in order to fit, the output is the largest integer percentage of its original size that will fit (rotating it if necessary). Output the percentage exactly as shown in the examples below. You can assume that no image will need to be reduced to less than 1% of its original size, so the answer will always be an integer percentage between 1% and 100%, inclusive.

Sample Input

560 400 218 28010 25 88 108 13 5 19 13 10 6199 333 40 275 90 218 280999 99 1 100 0 0 0

Sample Output

50%100%12%66%1%100%1%

POJ水题,注意定义a,b,c,d为float型。关于到精度之类,一定注意int  float  区别。

#include<iostream>using namespace std;void max(float&a,float&b){    float t;    if(a<b)    {        t=a;        a=b;        b=t;    }}int main(){    while(1)    {        float a,b,c,d,i;        cin>>a>>b>>c>>d;        if(a==0&&b==0&&c==0&&d==0)   return   0;        else        {            max(a,b);            max(c,d);            for( i=100;i>0;i--)            {                if((a*i/100<=c)&&(b*i/100<=d))    break ;            }            cout<<i<<"%"<<endl;        }    }        return  0;}


0 0
原创粉丝点击