Go Back   Champions of Regnum > Español > La Taberna

La Taberna Un lugar para conversar sobre casi cualquier tema

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Old 04-28-2011, 06:28 PM   #11
jamce
Apprentice
 
Join Date: Mar 2010
Location: Algasborg
Posts: 50
jamce is on a distinguished road
Default

usando el free pascal, te dice los errores y en que lugar estan (en las computadoras donde estudio esta instalado freepascal)

En USES no va :, va sin nada

No existe la variable MULTI sino MULT

CRLSCR necesita ;

OR no es aplicable a variables tipo real (tal vez si valla con variables logicas)

Al final quedaria asi
Quote:
PROGRAM calculo;
USES CRT;
VAR NRU, NRD, SUMA, REST, MULT, DIVI : REAL;
BEGIN
CLRSCR;
WRITELN ('Ingrese un numero : ');
READLN (NRU);
WRITELN ('Ingrese otro numero : ');
READLN (NRD);
SUMA := NRU + NRD;
REST := NRU - NRD;
MULT := NRU * NRD;
DIVI := NRU / NRD;
WRITELN ('El resultado vale : ', SUMA:6:2, REST:6:2, MULT:6:2, DIVI:6:2);
READLN;
END.
la anchura es 6 para que quede espacio entre los numeros
jamce no ha iniciado sesión   Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:21 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
NGD Studios 2002-2024 © All rights reserved