Add new attachment

Only authorized users are allowed to upload new attachments.

This page (revision-3) was last changed on 20-Aug-2015 17:35 by MarioTalevski

This page was created on 20-Aug-2015 17:35 by MarioTalevski

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Difference between version and

At line 207 removed 2 lines
!!! ЗАДАЧИ ОД ЕЛЕКТРОНСКИТЕ НАТПРЕВАРИ ВО ПАСКАЛ
!!Тетратка
At line 210 removed 61 lines
--[Марио Талевски|МариоТалевски]\\
%%prettify
{{{
program tetratka;
var a,b,c:integer;
begin
readln(a,b,c);
if a+b=c then
begin
writeln(a,'+',b,'=',c);
readln;
end;
if a-b=c then
begin
writeln(a,'-',b,'=',c);
readln;
end;
if a*b=c then
begin
writeln(a,'*',b,'=',c);
readln
end;
if a/b=c then
begin
writeln(a,'/',b,'=',c);
readln;
end;
end.
}}}
/%
!!Желка
--[Марио Талевски|МариоТалевски]\\
%%prettify
{{{
program zelka;
var H,U,D,n,k:longint;
begin
readln(H,U,D);
while (n < H) do
repeat
n:=n+U;
if (n<H) then n:=n-D;
k:=k+1;
until (n >= H);
writeln(k);
readln;
end.
Version Date Modified Size Author Changes ... Change note
3 20-Aug-2015 17:35 4.855 kB MarioTalevski to previous
2 20-Aug-2015 17:35 5.624 kB MarioTalevski to previous | to last
1 20-Aug-2015 17:35 5.574 kB MarioTalevski to last
« This page (revision-3) was last changed on 20-Aug-2015 17:35 by MarioTalevski