Delphi中求余的代码

2024-12-12 04:46:45
推荐回答(5个)
回答1:

procedure TForm1.Button1Click(Sender: TObject);
var a,b: string ;
c:integer;

begin
a:=Edit1.text;
b:=Edit2.text;
c:= strtoint(a) mod strtoint(b);
Edit3.text:=inttostr(c);

end;

end.

回答2:

用delphi自带的 MOD函数 比如:7 mod 2 得到的结果就是 1

回答3:

x:=5 mod 2;
if x=1 then
showmessage('ok');

回答4:

用一个函数就可以了. MOD // 求余.

回答5:

mod求余
/ 得整除数