使用String类型最为简单。
因为:
1、String可达255个字符;
2、可用下标进行存取String,即:String;
实现步骤:
1、首先从屏幕上读取一串字符->String;
2、if i<=255 then
begin
ch=读一字符;
if ch<>string then
显示出错信息
else
读下输入一个字符
i <-- i + 1;
loop;
end;
这仅是一个类Pascal算法,具体的程序还有待你自己完成。给分!!!
若要处理>255的字符串,就要考虑存储问题,算法同上。