fractii.pas
来自「This ar the basic programs that i did in」· PAS 代码 · 共 19 行
PAS
19 行
program fractii;
var a,b,c,d,e,f:integer;
begin
write('a= ');
readln(a);
write('b= ');
readln(b);
write('c= ');
readln(c);
write('d= ');
readln(d);
write('e= ');
readln(e);
write('f= ');
readln(f);
if b*f*d=0 then write('eroare 1');
if (a*f<=b*e) and (e*d<=f*c) then writeln('adevarat')
else writeln('fals');
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?