write a cobol program to display prime numbers between 1 to 100?
Answer Posted / d karthik
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 i pic 9(3).
01 j pic 9(3).
01 c pic 9(2).
01 d pic 9(2).
01 r pic 9(2).
01 n pic 9(3).
PROCEDURE DIVISION.
accept n.
perform varying i from 1 by 1 until i > n
move 0 to c
perform varying j from 1 by 1 until j > i
divide i by j giving d remainder r
if r = 0
add 1 to c
end-if
end-perform
if c = 2
display i
end-if
end-perform.
STOP RUN.
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
I like to know if possible to use %TRIM or any statement with prefiv "%" like RPG ile programs. thanks
What is perform?
Explain the input procedure?
Explain the difference between search and searchall?
Explain the syntax of sort?
Explain the input procedure and output procedure?
Explain what all the conditiones required for using open opcode on a file?
What is the syntax of sort?
Define sort?
Explain the output procedure?
What is redefine?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
What are the types of perform?
What is sort? And its syntax?
Explain the difference between section, paragraph and sentences?