vote up 0 vote down star

how can I write a quick program in fortran. need to ask 3 questions with an option to exit after each question

flag
i think the questioner should be first asked whether it's homework or not, and then tagging it. i've found i made a c++ quiz and someone added "homework" even though it wasn't. – Johannes Schaub - litb Nov 29 '08 at 14:04
It seemed overwhelmingly likely to me that a question worded like this could not be be anything other than an assignment. – Paul Nov 29 '08 at 14:06
There is a policy on questions that look like homework, stackoverflow.com/questions/40219/… – Brabster Nov 29 '08 at 14:11
Give him a break. Answer it's question or get something else to do. New user do not know all FAQ (and old user too) so he doesn't need 10 persons telling that he is asking the wrong way. Homework question or not, this is allowed. – Daok Nov 29 '08 at 15:26
Agreed. So it got tagged homework. Doesn't say that it won't get answered. – Paul Nov 29 '08 at 16:57

5 Answers

vote up 2 vote down check

How about something like this? (This is Fortran 90. If you use another version, please let me know.)

MODULE QuestionModule
  SUBROUTINE Ask(question, correctAnswer)
    CHARACTER(LEN=50):: question, correctAnswer, userAnswer
    CHARACTER(LEN=5):: continueQuestions
    PRINT*, question
    READ*, userAnswer
    IF (userAnswer == correctAnswer) 
    THEN
        PRINT*, "Correct"
    ELSE
        PRINT*, "Wrong"
    END IF
    PRINT*, "Would you like to continue?"
    READ*, continueQuestions
    IF (continueQuestions == "no")
        STOP
  END SUBROUTINE Ask
END MODULE QuestionModule

PROGRAM Questions
  USE QuestionModule
  CALL Ask("What is the capital of Denmark?", "Copenhagen")
  CALL Ask("What is the capital of Sweden?", "Stockholm")
  CALL Ask("Which Aztek god is often depicted as a hummingbird?", "Huitzilopochtli")
END PROGRAM Questions
link|flag
vote up 5 vote down

by reading a fortran manual? this should get you started

This tutorial looks like it should cover what you need.

link|flag
vote up -1 vote down

Though this may be true, I was trying to refresh my memory to help my neice.

link|flag
vote up -1 vote down

This not a homework question, but a homework question. ??? The professor asked the students to think of a program over the holiday and they would work on them after they return. I have not have a programming class in 10yrs. So I'm a little rusty. I thought this site would help. I sorry if I disturbed anyone. My neice does not know I'm looking online, I was just suppose to look over what she has come up with.

link|flag
I don't think anyone was offended. I think the answer you got was best. Just read up on a tutorial to refresh your memory. It sounds like the prof doesn't expect a fully functional program, just a good start at one. – EBGreen Nov 29 '08 at 14:33
I think the tutorial I linked should give you what you need. – Brabster Nov 29 '08 at 15:01
vote up -1 vote down

Thanks alot for your help, the tutorial did help. Also the sample program gave me something to build on. And yes it is Fortran 90.

link|flag

Your Answer

Get an OpenID
or

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