Hi,
irgendwie komme ich nicht hinter dem Fehler den mit Lotus immer ausspuckt:
"Incorrect data type for operator or @Function: Number expected."
Leider gibt es ja für Formula keinen Debugger und scheinbar kann man auch nicht herausfinden, auf welche Zeile der Fehler bezogen ist. Ein Finden des Fehlers war mir deswegen nicht möglich.
Hier der Code:
REM{Prompt the user for an integer. If the user enters a negative number or an empty string.
Prompt then again.};
@DoWhile(
factnum := @Prompt( [OkCancelEdit];
"Enter an Integer";
"Please enter an Integer whose factorial you want to compute."; "5" );
factnum := "" | @TextToNumber( factnum ) <= 0
);
REM{Set up the initial values for the computation.};
REM{Factwork is the number that gets decremented};
REM{Factorial is the variable that will hold the final result.};
factwork := @TextToNumber( factnum );
factorial := factwork;
REM{Compute the factorial};
REM{Iterate the code, decrementing the factwork variable until it is = 0};
@DoWhile(
factwork := factwork - 1;
factorial := factorial * factwork;
factwork != 1
);
REM{Return the result to the user.};
@Prompt([Ok]; "Results"; "The factorial of " + factnum + " (" + factnum + "!) is " + @Text( factorial; "," ) );
Der Code ist von einem Buch übernommen. Ich habe ihn mehrmals kontrolliert und ich wüsste nicht wo ich ihn falsch abgeschrieben habe.
Hoffe, ihr seid in dieser Hinsicht schlauer.
Liebe Grüße
Giordano