|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
看着视频教学,视频中能运行我的怎么就有错误呢,程序一样的啊 奇怪了 那位大侠指点指点 在线等
procedure TForm1.Edit1Click(Sender: TObject);
begin
Edit1.Text:=' ';
end;
procedure TForm1.Button1Click(Sender: TObject);
var
temp:Integer;
begin
temp:=StrToInt{Edit1.Text};
Edit1.Text:=IntToStr{temp Mod 10};
end;
[Error] Unit1.pas(45): Not enough actual parameters
[Error] Unit1.pas(46): There is no overloaded version of 'IntToStr' that can be called with these arguments
[Fatal Error] Project1.dpr(5): Could not compile used unit 'Unit1.pas'
|
|