write a cobol program to display prime numbers between 1 to 100?
Answer Posted / satyabrata nanda
Logic:
01 Var.
05 VarX Pic 9(2) Value zeros.
05 QNT Pic 9(2) value zeros.
05 REM Pic 9(2) value zeros.
05 CNT Pic 9(2) value zeros.
Procedure Div.
Display ' Enter VarX = '
Accept VarX.
If VarX = '1'
Display 'Prime no'
Else
Perform varying CNT from 2 by 1 until CNT >= VarX
Divide CNT into VarX giving QNT reminder REM
If rem > zero
Display 'Prime No'
Else
Display 'Not Prime'
End-if
End-if.
| Is This Answer Correct ? | 4 Yes | 8 No |
Post New Answer View All Answers
What are fillers? What is the actual use of fillers? With mall/simple example?
I like to know if possible to use %TRIM or any statement with prefiv "%" like RPG ile programs. thanks
Define redefine?
Explain the difference between search and searchall?
What is the actual use of fillers?
What is input procedure?
Explain the types of perform?
Explain the input procedure and output procedure?
What are the types of perform?
How to detect record is locked in cobol/400? What is the solution for that?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
Define perform? And its types?
Explain the output procedure?
seqence numbers in cobol
why icetool be used in programmer view?