下面图老师小编跟大家分享一个简单易学的生成BIG5字符集所有字符教程,get新技能是需要行动的,喜欢的朋友赶紧收藏起来学习下吧!
【 tulaoshi.com - 编程语言 】
program GenBig5Code;{$APPTYPE CONSOLE}uses SysUtils;Var i, j: byte; mBig5File: textfile;begin AssignFile(mBig5File, 'c:Big5Code.bin'); Rewrite(mBig5File); //BIG5字符集范围: 高位$A1~$FE, 低位分为两段:$40~$7E, $A1~$FE for i := $A1 to $FE do beginfor j := $40 to $7E do Write(mBig5File, chr(i), chr(j));for j := $A1 to $FE do Write(mBig5File, chr(i), chr(j)); end; Close(mBig5File);end.
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)
来源:http://www.tulaoshi.com/n/20160219/1601994.html
看过《生成BIG5字符集所有字符》的人还看了以下文章 更多>>