हिंदी

Following is an algorithm to classify numbers as “Single Digit”, “Double Digit” or “Big”. Classify_Numbers_Algo INPUT Number IF Number < 9 "Single Digit" Else If Number - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Following is an algorithm to classify numbers as “Single Digit”, “Double Digit” or “Big”.

Classify_Numbers_Algo
INPUT Number
IF Number < 9
             "Single Digit"
Else If Number < 99
             "Double Digit"
Else
             "Big"

Verify for (5, 9, 47, 99, 100, 200) and correct the algorithm if required.

टिप्पणी लिखिए

उत्तर

The correct algorithm is:

INPUT Number
IF Number < 10
"Single Digit"
  Else If Number < 100
    "Double Digit"
      Else
         "Big"
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 17. | पृष्ठ ८५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×