UVa12611 - Beautiful Flag

简介: UVa12611 - Beautiful Flag
#include <cstdio>#include <iostream>usingnamespacestd;
voidsolve(int);
intmain()
{
#ifndef ONLINE_JUDGEfreopen("e:\\uva_in.txt", "r", stdin);
#endifintt;
cin>>t;
for (inti=1; i<=t; i++) {
cout<<"Case "<<i<<":"<<endl;
intr;
cin>>r;
solve(r);
    }
return0;
}
voidsolve(intr)
{
doublelength=r*5;
doublewidth=length*3/5;
cout.precision(0);
cout<<fixed<<-length*9/20<<" "<<fixed<<width/2<<endl;
cout<<fixed<<length*11/20<<" "<<fixed<<width/2<<endl;
cout<<fixed<<length*11/20<<" "<<fixed<<-width/2<<endl;
cout<<fixed<<-length*9/20<<" "<<fixed<<-width/2<<endl;
}
目录
相关文章
UVa 374 Big Mod
UVa 374 Big Mod
40 0
|
索引
Beautiful Matrix
Beautiful Matrix
72 0
Beautiful Matrix
|
算法
ZOJ(ZJU) 1002 Fire Net(深搜)
ZOJ(ZJU) 1002 Fire Net(深搜)
100 0
ZOJ(ZJU) 1002 Fire Net(深搜)
|
Java C语言
HDOJ(HDU) 2139 Calculate the formula(水题,又一个用JavaAC不了的题目)
HDOJ(HDU) 2139 Calculate the formula(水题,又一个用JavaAC不了的题目)
98 0
|
Web App开发 PHP 索引
flag在index里(详解)——Bugku
刚刚做了bugku的题目,现在整理一下 写出解题思路,希望能够帮助到那些需要帮助的人 所有的wp都是以一题一篇的形式写出 主要是为了能够让读者更好的阅读以及查找, 希望你们不要责怪!!共勉!!!   Challenge 1152 Solves flag在index里 80   http://120.
2740 0
|
人工智能
poj2356:Find a multiple
题目链接: 【鸽巢原理+乱搞】 其实用不着开$map$ 一步最巧妙的转化是$……$前缀和。 反正本宝宝突发奇想就出来了。 首先,我们分类讨论。 1.当$∃i \in N_{+} $ 且 $i \in [1,n]$ 使 $a_{i} | n$ 则直接选这个数就好 2.没有以上那种特殊情况的话,我们记录前缀和$sum_{i}= \sum _{k=1}^{i} a_{k} (mod \ \ n)$ 然后又有两种情况。
1177 0
|
定位技术 机器学习/深度学习