function TForm1.MyIntToStr(x: integer): string;
var
temp: integer;
begin
Result:= '';
while x <> 0do
begin
temp:= x mod 10;
x:= x div 10;
//Result:= chr(ord(temp)+ ord('0'))+ Result;
Result:= GetStr(temp)+ Result;
end;
end;
function TForm1.GetStr(x: integer): string;
begin
case x of
1: Result:= '1';
2: Result:= '2';
3: Result:= '3';
4: Result:= '4';
5: Result:= '5';
6: Result:= '6';
7: Result:= '7';
8: Result:= '8';
9: Result:= '9';
0: Result:= '0';
else
Result:= 'Error!'
end;
end;
呵呵,没事写着玩玩,灌灌水!
楼主招聘物色好了没,“还有我等待”,呵呵;
听说小公司学习和锻炼的机会多,
大公司比较的稳定,
但又听说“30岁前不要老想着稳定,应该多试试,去闯一闯”。
哈哈,随便写写玩玩,灌灌水,凑凑人气。