vote up 1 vote down star

Hi!

I was just wondering why this certain problem happens to me. If you can help me, I will appreciate it.

Program factorial;
uses crt;
var
  f, i: Integer;
begin
  f:=1;
  for i:=1 to 5 do
    f:= f * i;
  write(f);
  readkey;
end.

Okay, That works fine and the result is 120. And it's true.

Now, here's the problem. If I asked the user to enter the value of the number, it won't work.

Program factorial;
uses crt;
var
  i,r: Integer;
begin
  write('Enter the number');
  read(r);

  for i:=1 to r do
    r:= r * i;

  write(r);
  readkey;
end.

If I wrote 5, the output will be 600.

flag

73% accept rate
Do you not indent your code? If not, programming will be very hard. If you do, please indent it on SO also. – Zifre May 29 at 20:56
By the way, why are you using Pascal? – Zifre May 29 at 20:57
1  
Why not start at i:=2? – dss539 May 29 at 21:03
1  
"And why you wanna know why I'm using Pascal?" That's like saying "Why do you want to know why I'm wearing a banana peel on my head?" Answer: It's unusual. – dss539 May 29 at 21:08
1  
I study it at the college, That's why. – Loai Najati May 29 at 21:12
show 7 more comments

3 Answers

vote up 10 vote down check

You are using the value r as the stopping condition of the loop and modifying the value in the loop.

Program factorial;
uses crt;
var
    i,r, f: Integer;
begin
  write('Enter the number');
  read(r);
  f := 1;
  for i:=1 to r do
     f:= f * i;
  write(f);
  readkey;
end.
link|flag
Just beat me :) – CiscoIPPhone May 29 at 20:58
Doh, beat me too. – dss539 May 29 at 20:58
vote up 4 vote down

You reuse the r variable. If you input 5 for r your program will in effect one to many times. You should start with 1 as the first f.

Program factorial;
uses crt;
var
    i,r, f: Integer;
begin
    write('Enter the number');
    read(r);
    f:=1
    for i:=1 to r do
        f:= f * i;
    write(r);
    readkey;
end.
link|flag
I understand why you say that. But if you for example use 5 as the input, you will loop 5 times. The first for r will be 5, but should be 1. In effect this is multiplying one time to many. – Peter Stuifzand May 29 at 21:02
Your first sentence is correct. I believe your 2nd and 3rd sentence is wrong. – dss539 May 29 at 21:02
His solution and your solution loop the same number of times. How does he have an off-by-one error in his loop? – dss539 May 29 at 21:06
His solution uses the value that was read from the user as the value to multiply with. His first example does this right, but the second example reuses the variable instead of declaring a new one. – Peter Stuifzand May 29 at 21:07
@Peter, yes you are correct, but that is not an off-by-one error. That's why I was confused by what you said. – dss539 May 29 at 21:09
vote up 1 vote down

try:

Program factorial;
uses crt;
var
i,r,x: Integer;
begin
write('Enter the number');
read(x);
r:=1
for i:=1 to x do
r:= r * i;
write(r);
readkey;
end.
link|flag
I think that's wrong. You don't keep the value in the loop, but overwrite it every time. – Peter Stuifzand May 29 at 20:56
+1 for keeping the original indentation. Helpful while still poking at the original silliness. – Randolpho May 29 at 20:58
@Peter Stuifzand, good catch. I hate programs that use single letter variables! makes it confusing – KM May 29 at 21:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.