Alfredo's pizza restaurant

Source: Internet
Author: User
Tags integer numbers

Source: http: // 218.194.91.48/acmhome/problemdetail. do? & Method = showdetail & id = 1455

Description

Traditionally after the local contest, judges and contestants
Go to their favorite restaurant, alfredos pizza restaurant. the contestants are really hungry after trying hard for five hours. to get their pizza as quickly as possible, they just decided to order one big pizza for all instead of several small ones. they
Wonder whether it is possible to put the big rectangular pizza on the surface of the Round Table such that it does not overhang the border of the table. Write a program that helps them!

Input

The input file contains several test cases. Each test case starts
With an integer number R, the radius of the surface of the round table the contestants are sitting.
Input is terminated by r = 0. Otherwise, 1
≤ R ≤ 1000. Then follow 2 integer numbers W and l specifying
The width and the length of the pizza, 1 ≤ W ≤ L ≤ 1000.

Output

Output for each test case whether the ordered pizza will fit
On the table or not. adhere to the format shown in the sample output. A pizza which just touches the border of the table without intersecting it is considered fitting on the table, see Example 3 for clarification.

Sample Input

38 40 60

35 20 70

50 60 80

0

Sample output

Pizza 1 fits on the table.

Pizza 2 does not fit on the table.

Pizza 3 fits on the table.


// This question is completely a question. Ask if you can put the rectangle in the circle .. # include <cstdio> int main () {int A, B, C, id = 1; while (scanf ("% d", &) {scanf ("% d", & B, & C); A = A * 2; If (A * A> = B * B + C * C) printf ("Pizza % d fits on the table. \ n ", Id ++); else printf (" Pizza % d does not fit on the table. \ n ", Id ++);} return 0 ;}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.