dengxinyi 6 yıl önce
ebeveyn
işleme
d99aa8e854
2 değiştirilmiş dosya ile 27 ekleme ve 1 silme
  1. 1 1
      poj/1877.flooded/main.cc
  2. 26 0
      poj/2050.searching-the-web/main.cc

+ 1 - 1
poj/1877.flooded/main.cc

@@ -7,7 +7,7 @@ using std::sort;
 
 const char fmt[] = "Region %d\nWater level is %.2f meters.\n%.2f percent of the region is under water.\n";
 const int N = 30;
-const int SQR = 100;
+const int SQR = 10 * 10;
 
 int hei[N * N];
 int sum[N * N];

+ 26 - 0
poj/2050.searching-the-web/main.cc

@@ -0,0 +1,26 @@
+#include <cstdio>
+
+const int N = 100;
+const int LEN = 80;
+const int NUM = 1500;
+const int M = 50000;
+
+const char asterisks[] = "**********";
+const char dashes[] = "----------";
+const char equals[] = "==========";
+const char nothing[] = "Sorry, I found nothing.";
+
+struct article {
+  
+} articles[N];
+
+int main() {
+  int n, m;
+  scanf("%d", &n);
+  while () {
+    
+  }
+  scanf("%d", &m);
+  
+  return 0;
+}