Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Fortan has a three-way IF statement of the form IF(expression) n1, n2, m3, where expression is a numeric expression and n1, n2, n3, are statement
Fortan has a three-way IF statement of the form IF(expression) n1, n2, m3, where expression is a numeric expression and n1, n2, n3, are statement numbers. Control transfers to statement n1 if expression is negative, to statement n2 if expression equals 0, and to n3 if expression is positive. What is the output of the following section of Fortan code if I has the value 3 and MAX has the value 4?
IF ( I-MAX) 10, 20, 30 10
Write (*,*) 2*I
20 Write (*,*) I*I
30 Write (*,*) I**MAX
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started