摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12266997.html 绝对值排序(37min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2020 Problem Description 输入n(n< 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12259683.html 母牛的故事(47min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2018 Problem Description 有一头母牛, 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12258409.html 偶数求和(98min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2015 Problem Description 有一个长度为n 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12253690.html 1.数据的交换输出(33min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2016 Problem Description 输入 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12250218.html 1.青年歌手大奖赛_评委会打分(23min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2014 Problem Descript 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12246707.html 1.平方和与立方和(21min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2007 Problem Description 给定 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12243098.html 1.两点间距离(10min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2001 Problem Description 输入两点 阅读全文
摘要:
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12241202.html 1.求绝对值(3min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2003 Problem Description 求实数的绝对 阅读全文
摘要:
1.奇数乘积 此题特别简单,只需要加一个奇数判断就,如果是奇数则相乘。 #include<stdio.h> #include<math.h> int main(void) { int n; // scanf("%d",&n); int i; while(~scanf("%d",&n)) { int 阅读全文
摘要:
此题没有什么难度,但是需要注意小数除法时,被除数要写成1.0而不是1,要不结果时整数。 #include<stdio.h> #include<math.h> #define f(n) n*n+n+41 int main(void) { int m; scanf("%d",&m); while(m>0 阅读全文