TABLAS DE MULTIPLICAR DEL UNO AL DIEZ

1
2
mult(N):-mult(N,1).
mult(N,A):-A>N,!.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
NOTA:
El write lo pueden sustituir por la palabra display ya que técnicamente hace lo mismo.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.