上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: #include <iostream> #include <stdio.h> using namespace std; int main() { int t; double x1,y1,x2,y2,x3,y3,a,k,s; cin>>t; while(t--) { cin>>x1>>y1>>x2>> 阅读全文
posted @ 2017-01-21 20:51 王坤1993 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <string.h>struct milk{ char brand[128]; int price; int volume; double value;}a[100];int main(void){ int i,t,n,d; struct mil 阅读全文
posted @ 2017-01-21 20:50 王坤1993 阅读(216) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> #include <cstring> using namespace std; class Data { public: int S, Height; int upl, uph; }; Data Da[100]; in 阅读全文
posted @ 2017-01-20 22:41 王坤1993 阅读(601) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>const int MAXN=1000;int map[MAXN][MAXN];int n;int linker[MAXN];bool used[MAXN];bool dfs(int a){ for(int i=0;i<n;i++ 阅读全文
posted @ 2017-01-20 22:38 王坤1993 阅读(214) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<queue> using namespace std; #define MAXN 1000007 typedef long long ll; 阅读全文
posted @ 2017-01-20 22:31 王坤1993 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include <cstdlib> #include <cstring> #include <cstdio> using namespace std; char s[1005]; int len, Mp[25] = {1,1,2,6,4,2,2,4,2,8,4,4,8,4,6,8,8,6,8,2} 阅读全文
posted @ 2017-01-20 22:28 王坤1993 阅读(196) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int t; double x, y; scanf("%d", &t); for(int i = 1; i <= t; ++i){ scanf("%lf%lf", &x, &y); printf("Property %d: This p 阅读全文
posted @ 2017-01-20 22:27 王坤1993 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include<iomanip>using namespace std; int main(){ float total_sum=0.0; float money_mon[12]; for(int i=0;i<12;i++) { cin>>money_mon[ 阅读全文
posted @ 2017-01-20 22:22 王坤1993 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; struct BigReal //高精度实数 { int len; //长度 int num[10000]; int point; //小数点位置 BigReal() { len=1; 阅读全文
posted @ 2017-01-20 22:20 王坤1993 阅读(251) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<string.h> int main() { int i,n,len,j,k,t; char s1[1005],s2[100]; scanf("%d",&n); getchar(); while(n--) { gets(s1); len=strl 阅读全文
posted @ 2017-01-20 22:18 王坤1993 阅读(295) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页