milardovich

Triangulos

Jun 30th, 2011
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.16 KB | None | 0 0
  1. if a = b and b = c then
  2.     writeln('equilatero')
  3. if (a = b and b <> c) or (c = a and b <> a) then
  4.     write('isoceles')
  5. if a <> b and b <> c then
  6.     write('escaleno')
Advertisement
Add Comment
Please, Sign In to add comment