मराठी

For some calculations, we want an algorithm that accepts only positive integers up to 100. Accept_1 to 100_Algo INPUT Number IF (0 <= Number) AND (Number <= 100) ACCEPT Else - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

For some calculations, we want an algorithm that accepts only positive integers up to 100.

Accept_1 to 100_Algo
INPUT Number
IF (0 <= Number) AND (Number <= 100)
       ACCEPT
Else
       REJECT
  1. On what values will this algorithm fail?
  2. Can you improve the algorithm?
टीपा लिहा

उत्तर

If we enter 0 then this algorithm will fail.

Correct algorithm:

INPUT Number
IF (0 < Number) AND (Number <= 100)
   ACCEPT
   Else
      REJECT
shaalaa.com
Representation of Algorithms
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 4: Introduction to Problem Solving - Exercise [पृष्ठ ८५]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 4 Introduction to Problem Solving
Exercise | Q 18. | पृष्ठ ८५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×