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?
Explain the difference between search and searchall?
Explain the syntax of redefine?
seqence numbers in cobol
I like to know if possible to use %TRIM or any statement with prefiv "%" like RPG ile programs. thanks
Define redefine?
Define perform? And its types?
How to detect record is locked in cobol/400?
What are fillers?
What is the actual use of fillers?
What is comp?
How to detect record is locked in cobol/400? What is the solution for that?
Define redefine and its syntax?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
Explain the input procedure and output procedure?