about summary refs log tree commit diff
path: root/12/TP-ThanhHoá-2009/BAI4.PAS
diff options
context:
space:
mode:
Diffstat (limited to '12/TP-ThanhHoá-2009/BAI4.PAS')
-rw-r--r--12/TP-ThanhHoá-2009/BAI4.PAS29
1 files changed, 0 insertions, 29 deletions
diff --git a/12/TP-ThanhHoá-2009/BAI4.PAS b/12/TP-ThanhHoá-2009/BAI4.PAS
deleted file mode 100644
index 8706032..0000000
--- a/12/TP-ThanhHoá-2009/BAI4.PAS
+++ /dev/null
@@ -1,29 +0,0 @@
-const
-  m: array[1..9] of byte = (0, 0, 1, 1, 0, 0, 4, 7, 0);
-  equa: array[1..9] of ansistring = (
-    #10,
-    #10,
-    #10'1+2-3=0'#10,
-    #10'1-2-3+4=0'#10,
-    #10,
-    #10,
-    #10'1+2-3+4-5-6+7=0'#10'1+2-3-4+5+6-7=0'#10'1-2+3+4-5+6-7=0'#10'1-2-3-4-5+6+7=0'#10,
-    #10'1+2+3+4-5-6-7+8=0'#10'1+2+3-4+5-6+7-8=0'#10'1+2-3+4+5+6-7-8=0'#10'1+2-3-4-5-6+7+8=0'#10'1-2+3-4-5+6-7+8=0'#10'1-2-3+4+5-6-7+8=0'#10'1-2-3+4-5+6+7-8=0'#10,
-    #10
-  );
-
-var
-  n: byte;
-  f: text;
-
-begin
-  assign(f, 'BAI4.INP');
-  reset(f);
-  read(f, n);
-  close(f);
-
-  assign(f, 'BAI4.OUT');
-  rewrite(f);
-  write(f, m[n], equa[n]);
-  close(f)
-end.