水题
wsxsd94
这个作者很懒,什么都没留下…
展开
-
URAL1001 - Reverse Root - 水题
#include #include double a[200000]; int main() { int tot=0; int i; while(scanf("%lf",&a[tot++])!=EOF); tot--; while(tot--) { printf("%.4lf\n",sqrt(a[tot])); } return 0; }原创 2014-08-07 17:42:23 · 511 阅读 · 0 评论 -
URAL1010 - Discrete Function - 水题
水题,注意double就行,还有就是必须fabs,返回浮点型,abs是整型原创 2014-08-09 10:51:36 · 485 阅读 · 0 评论 -
Hdu1407 - 测试你是否和LTC水平一样高 - 水题
#include #include int LTC[5][10005]; int main() { int mark[10005]; memset(mark,0,sizeof(mark)); for(int i=1;i*i<=9998;i++) { for(int j=1;j*j<=9998;j++) { for(int k=1;k*k<=9998;k++) {原创 2014-08-09 16:16:48 · 571 阅读 · 0 评论