Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. program Media;
  2. begin
  3. var
  4. nome:string
  5. nt1,nt2,media:real
  6. write ('Digite o nome do(a) aluno(a) ');
  7. read (Nome);
  8. write ('Digite 2 notas de ' , nome, '.');
  9. read (nt1,nt2);
  10. media:= (nt1+nt2)/2;
  11. write (Nome 'obteve media' , Media)
  12. end
Add Comment
Please, Sign In to add comment