摘要: 用到的知识点: 代码如下: /* Input 输入数据包含多个测试实例,每个测试实例占一行,每行的开始是一个整数n(3<=n<=100),它表示多边形的边数(当然也是顶点数),然后是按照逆时针顺序给出的n个顶点的坐标(x1, y1, x2, y2... xn, yn),为了简化问题,这里的所有坐标都 阅读全文
posted @ 2013-07-13 17:04 Talbot3 阅读(263) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { __int64 n,m,i,j,sum; while(cin>>n) { n%=10000; sum=((n*(n+1)/2)*(n*(n+1)/2))%10000; printf("%04I6 阅读全文
posted @ 2013-07-13 13:30 Talbot3 阅读(233) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;int main(int argc, char* argv[]){ double a,b,c; int i,n; while (cin>>n) { for(i=0;i>a>>b>>c; if(a+b>c&&a+c>b&&b+c>a) {cout<<"YES\n";} else {cout<<"NO\n";} } } return 0;} 阅读全文
posted @ 2013-07-13 11:16 Talbot3 阅读(221) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> int main() { using namespace std; int y,count; char x; cin>>count; while(count--){ cin>>x>>y; islower(x)?cout<<(96-x+y)<<endl:cout< 阅读全文
posted @ 2013-07-13 10:51 Talbot3 阅读(276) 评论(0) 推荐(0) 编辑