Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Program Fun02 ;
- var
- n:integer;
- procedure teste(n:integer);
- Begin
- if (n > 0) then
- Writeln('Resultado: 1')
- else Writeln('Resultado: 0');
- End;
- Begin
- Write('Informe Um Valor: ');
- readln(n);
- teste(n);
- Writeln(' by Marcus Vinicius');
- End.
Advertisement
Add Comment
Please, Sign In to add comment