//如需包含小写字母,数字,在S中添加。 
function aaa(Num:Integer): string;
var
i: Byte;
s:
string;
begin
s :
= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
Result :
= '';
for i := 0 to Num-1 do
Result :
= Result + s[Random(Length(s)-1)+1];
end;

 
                    
            
                

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-07
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案