上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 void gcd(int a,int b,int &d,int &x,int &y) 8 { 9 if(!b)10 {11 d=a;... 阅读全文
posted @ 2015-08-12 14:22 相儒以沫 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 struct point 2 { 3 double x, y; 4 point( double _x = 0, double _y = 0 ) 5 { 6 x = _x; 7 y = _y; 8 } 9 point ope... 阅读全文
posted @ 2015-08-10 19:58 相儒以沫 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 struct point 9 { 10 double x, y; 11 point( double _x ... 阅读全文
posted @ 2015-08-10 19:57 相儒以沫 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int father[100010]; 9 int num[100010];10 11 int main()12 {13 int a... 阅读全文
posted @ 2015-08-10 18:27 相儒以沫 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int father[1010]; 9 int num[1010];10 11 int main()12 {13 int n,m;1... 阅读全文
posted @ 2015-08-10 16:09 相儒以沫 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct Node 8 { 9 char c;10 Node* next;11 Node(){next=NULL;}12 };13 14... 阅读全文
posted @ 2015-08-07 14:07 相儒以沫 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1 import java.math.*; 2 import java.util.*; 3 4 public class Main 5 { 6 static String arr1; 7 static String arr2;; 8 static char[] ans=n... 阅读全文
posted @ 2015-08-05 20:15 相儒以沫 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1 import java.math.*; 2 import java.util.*; 3 4 public class Main 5 { 6 public static void main(String[] args) 7 { 8 Scanner cin=new... 阅读全文
posted @ 2015-08-05 17:21 相儒以沫 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1 import java.math.*; 2 import java.util.*; 3 4 public class Main 5 { 6 static BigInteger arr[] = new BigInteger [1000000]; 7 public static ... 阅读全文
posted @ 2015-08-05 16:47 相儒以沫 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 1 import java.math.*; 2 import java.util.*; 3 4 public class Main 5 { 6 public static void main(String[] args) 7 { 8 int m,n; 9 ... 阅读全文
posted @ 2015-08-05 15:00 相儒以沫 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页