#include using namespace std;int qh_num(int a)//该函数主要用来获得数a的亲和数{ int sum = 0; for(int i = 1; i > m; while (m--) { cin >> a >> b; int qh_a = qh_num(a.....
分类:
其他好文 时间:
2015-10-10 22:53:12
阅读次数:
213
这道题只有一个梗,那就是定义边的时候要定义为float或者double类型,定义为int一定错.#include using namespace std;int main(){ int m; double n1, n2, n3; cin >> m; while (m--) { cin >> n1 ....
分类:
其他好文 时间:
2015-10-10 22:47:24
阅读次数:
184
//任意多边形的面积计算#include #include #include using namespace std;typedef std::pair point;#pragma warning(disable:4244)double det(point p0,point p1,point p2)...
分类:
其他好文 时间:
2015-10-05 11:35:50
阅读次数:
125
#include using namespace std;int main(){ int n; int sec; while (cin >> n && n != -1) { //cin >> sec; //输入多少秒 __int64 sum_of_high = 1; __int64 sum_o...
分类:
其他好文 时间:
2015-09-27 10:02:37
阅读次数:
349
挺简单的一道题目!#include #include using namespace std;int main(){ string str, short_str; while (cin >> str && str != "#") { cin >> short_str; string::size_.....
分类:
其他好文 时间:
2015-09-27 00:02:50
阅读次数:
171
#include #include #include using namespace std;int main(){ string name_of_food; double num, unit_price; double sum = 0; while (cin >> name_of_food) { ...
分类:
其他好文 时间:
2015-09-26 09:18:50
阅读次数:
127
太水了,这种东西!#include using namespace std;int main(){ double n = 0, m = 0; while (cin >> n >> m && !(n == 0 && m == 0)) { double temp = n * n - 4 * m; d.....
分类:
其他好文 时间:
2015-09-26 00:15:14
阅读次数:
148
想了好久,决定还是写一篇随笔来总结我的大一总结吧。 大一刚开学,恍惚。不知道干啥,浑浑噩噩了2个月左右,我接触到了acm,开始我也不知道是干嘛的,只听学长们说是学算法,虽然还是没怎么懂。当时c语言看的差不多学完了,也不知道能干吗。后来学长们推荐了杭电oj,来了题a+b,然后又来了几发a+b。也不知....
分类:
其他好文 时间:
2015-08-29 16:55:27
阅读次数:
187
TicketsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 1941Accepted Submission(s): 938Problem Desc...
分类:
其他好文 时间:
2015-08-17 21:38:05
阅读次数:
128
Problem Description
I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.
Input
The first line of the input contains an integer T(1<=T<...
分类:
其他好文 时间:
2015-08-08 22:54:53
阅读次数:
149