Won't Compile the simplest of programs Am I being stupid?

  • Thread starter Thread starter JamesWMH
  • Start date Start date
  • Tags Tags
    Programs Stupid
Click For Summary
SUMMARY

The forum discussion centers on a Fortran 90 program that fails to compile due to syntax errors. The user, Jim, encounters an error related to the "stop" statement and the absence of a "then" keyword in the "if" statement. The resolution involves correcting the conditional statement to include "then" and ensuring proper logic to handle negative inputs. The final code structure should prevent attempts to calculate the square root of negative numbers while maintaining clarity in the syntax.

PREREQUISITES
  • Understanding of Fortran 90 syntax and structure
  • Familiarity with conditional statements in programming
  • Knowledge of mathematical functions, specifically square roots
  • Basic debugging skills in programming environments
NEXT STEPS
  • Review Fortran 90 conditional statements and their syntax
  • Learn about error handling in Fortran programming
  • Explore mathematical functions in Fortran, focusing on sqrt() usage
  • Practice writing and debugging simple Fortran programs
USEFUL FOR

This discussion is beneficial for novice programmers learning Fortran, educators teaching programming concepts, and anyone interested in debugging Fortran code effectively.

JamesWMH
Messages
3
Reaction score
0
Won't Compile the simplest of programs! Am I being stupid?

Hi, I'm just getting my teeth back into Fortran 90 I had a course on it last year, and just want to familirise myself with it before I apply for post grad stuff.

Anyway, the program i have written is:

program emosix

real:: a, roota

write(*,*) 'Type an interger to find the square root (must be a positive number)'
read(*,*) a

if(a>=0.0)
stop

roota = sqrt(a)

write(*,*) 'The sqaure root of ', a, ' = ', roota

pause

end program emosix

and I get the error code:

Error: Cannot assign to a named constant at (1)
C:\Users\James\Documents\Programming\Emo6\~emo6.f90:15.5:

pause
1
Warning: Deleted feature: PAUSE statement at (1)

The warning about deleted feature hasn't made any difference in the past, so I don't think its that, but I have no idea what the cannot assign... part means?? Any ideas?

Thanks Jim
 
Technology news on Phys.org


Why is that stop in there after the if statement?

Also, your if statement needs an end if, I believe.
Code:
program emosix

real:: a, roota

write(*,*) 'Type an interger to find the square root (must be a positive number)'
read(*,*) a

if(a>=0.0) then
  roota = sqrt(a)
  write(*,*) 'The sqaure root of ', a, ' = ', roota

  pause
end if
stop
end program emosix
 


Hi

Thanks for the response, its in there to stop the program if the user puts a negative number in, as you can't have a square root of negative number.

I put in the end if and it gives me another error

if(a>=0.0)
1
Error: Cannot assign to a named constant at (1)
C:\Users\James\Documents\Programming\Emo6\~emo6.f90:11.3:

end if
1
Error: Expecting END PROGRAM statement at (1)
C:\Users\James\Documents\Programming\Emo6\~emo6.f90:17.5:

pause
1
Warning: Deleted feature: PAUSE statement at (1)

that is what I get now.
 


oops its supposed to be 'a<=0.0' but that didn't change anything.

Thanks

Jim
 


JamesWMH said:
Hi

Thanks for the response, its in there to stop the program if the user puts a negative number in, as you can't have a square root of negative number.
Well, you can, but the result won't be real. Instead of stopping the program, you should have logic that prevents the program from attempting to take the square root of a negative number.
JamesWMH said:
I put in the end if and it gives me another error

if(a>=0.0)
1
Error: Cannot assign to a named constant at (1)
C:\Users\James\Documents\Programming\Emo6\~emo6.f90:11.3:

end if
1
Error: Expecting END PROGRAM statement at (1)
C:\Users\James\Documents\Programming\Emo6\~emo6.f90:17.5:

pause
1
Warning: Deleted feature: PAUSE statement at (1)

that is what I get now.

JamesWMH said:
oops its supposed to be 'a<=0.0' but that didn't change anything.
You can take the square root of 0, so you should make the test expression a < 0.0.

As far as the "can't assign to a named constant" business, try using a different variable for roota.

What does your code look like now? You if statement wasn't formed correctly before, and it still might not be right.
 


JamesWMH said:
if(a>=0.0)

You need a "then". For example (also fixing your test condition):

Code:
      if (a <= 0.0) then
         stop
      end if

For some reason, the missing "then" triggers the "can't assign to a named constant" error.
 


jtbell said:
You need a "then".
I added one in the code I showed in post #2, but didn't say that explicitly. I should have, since the OP seems to have missed it.
jtbell said:
For example (also fixing your test condition):

Code:
      if (a <= 0.0) then
         stop
      end if

For some reason, the missing "then" triggers the "can't assign to a named constant" error.

The condition can be written as a < 0.0.
 


suggestion of mark is absolutely correct

the error is coming due to absence of THEN statement

thanx
 


I know this is an old thread that's been bumped for some reason, but I would like to add one more thing.

The Fortran "if" statement doesn't require a "then" (or an "endif" either) when the "if" is only controlling a single statement.

In this sense the OP's code should (almost) have worked correctly, had he not put the "new line" after the "if" statement (since end of line is more than just white space in Fortran source code).

Code:
   if (a <= 0.0) stop

This should have worked correctly without "then" and without "endif"
 

Similar threads

  • · Replies 16 ·
Replies
16
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
9K
  • · Replies 25 ·
Replies
25
Views
10K
  • · Replies 3 ·
Replies
3
Views
10K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
5K
Replies
6
Views
4K
Replies
13
Views
3K