This code simply receives a very basic 'password' (numbers, letters, nothing fancy). After you press enter, it will display it back. The only special key I'm handling is backspace (code 8
in ASCII).
uses crt;
var
pass: string;
key: char;
len: integer;
begin
clrscr;
key := chr(0);
pass := chr(0);
write('Write the password:');
while key<>chr(13) do
begin
key := readkey;
len := length(pass);
case ord(key) of
8: begin
if len > 0 then
begin
delete(pass, len, 1);
end;
end;
else
pass := concat(pass, key);
end;
end;
writeln('Password: ', pass);
readln; //pauses the code
end.
You will probably notice that the program
block is missing. It was on purpose, since Free Pascal Compiler has issues with it.
The code compiles / runs fine, to the best of my knowledge. Remember that this is simply and purely made for ASCII 7-bit (I think the extended set will work).
In terms of clarity, structure and indentation, what else can I improve?
1 Answer 1
Indentation:
From the Coding Style recommendation, I am using 2-space indentation, which works for me. The guide suggests that you should avoid tabs as well:
Do not use TAB characters (ASCII HT, 0x09). There is no standard default TAB setting, so the look of source files using TAB characters will depend on client settings. This may result in a chaotic view of source files. Align by space characters (also see Indentation).
However, the same coding style says that you should not use space around operators, symbols...:
Don't use spaces around operators, colons, parentheses etc. e.g. write p:=p+i; instead of p := p + i ;.
Since I am not using colored symbols, I've chosen to follow the "Guideline of the Lazarus 1.4.0 color preview":
As you can see, the color preview of the IDE uses spaces around symbols (:=, +, -, *, and so on). Whoever wrote this preview is a point out of curve like me.
Code:
Repeat is a posttest loop, and your code needs to run at least once, so why not a
repeat..until
loop.. In another words, you know the firstkey
will always be different from#13
, you hardcoded it. You can save abegin..end
block, as well.You do not need
begin..end
blocks for one line statements inside case conditions.
Structure:
For code reuse and exploration I would find it more practical to create a function that would only wait for and then return the password:
program HandlePassword;
uses
crt;
function WaitForPassword: string;
var
key: char;
len: integer;
begin
Result := Chr(0);
key := Chr(0);
repeat
key := ReadKey;
len := Length(Result);
case Ord(key) of
8: if len > 0 then Delete(Result, len, 1);
else Result := Result + key;
end;
until key = Chr(13);
end;
begin
ClrScr; // clear screen
Write('Write the password:');
WriteLn(WaitForPassword);
ReadLn; // pauses the code
end.
-
\$\begingroup\$ I agree with everything in your code, except the assumption that the key will never be
13
. What if the user simply presses enter? I use tabs for a simple reason: tabs can have any width you wish: 2 spaces, 4 spaces, 10 spaces, 50.... It's up to you \$\endgroup\$Ismael Miguel– Ismael Miguel2015年08月21日 17:35:49 +00:00Commented Aug 21, 2015 at 17:35 -
\$\begingroup\$ The code here (CodeExchange) and in Lazarus does not use tabs for a reason. Not all word processors deals with them in the same manner. I should have noted that it is a recommendation in the guideline as well. \$\endgroup\$cpicanco– cpicanco2015年08月21日 17:59:43 +00:00Commented Aug 21, 2015 at 17:59
-
\$\begingroup\$ About the key issue, I think it was your assumption, not mine. If you do not want blank (#0) passwords, or passwords with length < 6, you could treat those as exceptions, for example. \$\endgroup\$cpicanco– cpicanco2015年08月21日 18:04:29 +00:00Commented Aug 21, 2015 at 18:04
-
\$\begingroup\$ Well, I always used tabs on everything. But go ahead and make that point. Also, that is quite a keen observation.... Stupid me.... Add that to the answer and I'll accept it. But comment after so I know you have done your changes \$\endgroup\$Ismael Miguel– Ismael Miguel2015年08月21日 18:06:25 +00:00Commented Aug 21, 2015 at 18:06
-
\$\begingroup\$ Changes about the Tabs were done. \$\endgroup\$cpicanco– cpicanco2015年08月21日 18:13:19 +00:00Commented Aug 21, 2015 at 18:13
program anyname;
it would complain that the block wasn't recognized or similar \$\endgroup\$