Advertisement
henriqueforino

LISTA1_EX1 2014/02

Sep 30th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.38 KB | None | 0 0
  1. //ALUNO: Luiz Henrique Forino
  2. //PROGRAMAÇÃO I, PROFESSOR PX
  3. //2014/02
  4.  
  5. Program EX1_LISTA1 ;
  6. var x,y: integer;
  7.  
  8.  Begin
  9.     writeln ('Entre com o valor de x: ');
  10.     readln (x);
  11.     writeln ('Entre com o valor de y: ');
  12.     readln (y);
  13.    
  14.     y := (x - y);
  15.     x := (x - y);
  16.     y := (x + y);
  17.    
  18.     writeln ('Novo valor de X: ', x);
  19.     writeln ('Novo valor de y: ', y);
  20.     readkey;
  21.        
  22. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement