init: repo
This commit is contained in:
16
open_set/29_unary_op2.pas
Normal file
16
open_set/29_unary_op2.pas
Normal file
@@ -0,0 +1,16 @@
|
||||
program main;
|
||||
var a,b: integer;
|
||||
begin
|
||||
a := 56;
|
||||
b := 4;
|
||||
a := a - - 4 + +b;
|
||||
if (- not not not a <> 65) then
|
||||
begin
|
||||
a := - - -1;
|
||||
end
|
||||
else
|
||||
begin
|
||||
a := 0 + +b;
|
||||
end;
|
||||
write(a);
|
||||
end.
|
||||
Reference in New Issue
Block a user