about summary refs log tree commit diff
path: root/THT/B/QG-2014/sample.pas
diff options
context:
space:
mode:
authorRaphael McSinyx <vn.mcsinyx@gmail.com>2017-06-13 15:18:37 +0700
committerRaphael McSinyx <vn.mcsinyx@gmail.com>2017-06-13 15:18:37 +0700
commit2b6ce5b49dedf4c6e6f41bd23a94f2f6a76d0a50 (patch)
tree1561fb72488a3dba1bab5549320e54d08170f37b /THT/B/QG-2014/sample.pas
parent69a50f40bea8f04c2d2b1715dad5ea8c7d6ef507 (diff)
downloadcp-2b6ce5b49dedf4c6e6f41bd23a94f2f6a76d0a50.tar.gz
Add THT/B/QG-2014
Diffstat (limited to 'THT/B/QG-2014/sample.pas')
-rwxr-xr-xTHT/B/QG-2014/sample.pas21
1 files changed, 21 insertions, 0 deletions
diff --git a/THT/B/QG-2014/sample.pas b/THT/B/QG-2014/sample.pas
new file mode 100755
index 0000000..c8b5e17
--- /dev/null
+++ b/THT/B/QG-2014/sample.pas
@@ -0,0 +1,21 @@
+uses dic;
+
+var
+  answer1: char;
+  answer2, answer3, answer4: longint;
+
+begin
+  answer1 := get_char_at_pos(4);
+  writeln('Vi tri thu 4 cua xau can tim la: ', answer1);
+
+  answer2 := count_char('c');
+  writeln('So luong ki tu c trong tu can tim la: ', answer2);
+
+  answer3 := count_char('a');
+  writeln('So luong ki tu a trong tu can tim la: ', answer3);
+
+  answer4 := count_char('n');
+  writeln('So luong ki tu n trong tu can tim la: ', answer4);
+
+  answer('can');
+end.