From 318184dbda0658d8afae6dd3c13a0718382726a1 Mon Sep 17 00:00:00 2001 From: Raphael McSinyx Date: Mon, 9 Jan 2017 10:47:37 +0700 Subject: Add NTU/{pali2,editpic}.c and update README.md --- "09/Q-Hu\341\272\277-2014/bai3.pas" | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 "09/Q-Hu\341\272\277-2014/bai3.pas" (limited to '09/Q-Huế-2014/bai3.pas') diff --git "a/09/Q-Hu\341\272\277-2014/bai3.pas" "b/09/Q-Hu\341\272\277-2014/bai3.pas" new file mode 100644 index 0000000..91fc05f --- /dev/null +++ "b/09/Q-Hu\341\272\277-2014/bai3.pas" @@ -0,0 +1,34 @@ +var + x, y: string; + f: text; + a: array[0 .. 9] of shortint; + b: shortint; + c: char; + +begin + assign(f, 'INPUT.INP'); + reset(f); + readln(f, x); + readln(f, y); + close(f); + + fillchar(a, 0, sizeof(a)); + + for c in x do + a[ord(c) - 48] := 1; + + for c in y do + begin + b := ord(c) - 48; + if a[b] = 1 then + a[b] := 2 + end; + + assign(f, 'OUTPUT.OUT'); + rewrite(f); + for b := 9 downto 0 do + if a[b] = 2 then + write(f, b); + writeln(f); + close(f) +end. -- cgit 1.4.1