Advertisements
Advertisements
प्रश्न
Write pseudocode that will perform the following:
- Read the marks of three subjects: Computer Science, Mathematics, and Physics, out of 100.
- Calculate the aggregate marks.
- Calculate the percentage of marks.
कोड लेखन
उत्तर
Input marks of computer science
Input marks of mathematics
Input marks of physics
Calculate sum = CS + math + phy
Calculate percentage = ( sum / 300 ) * 100
Print sum
Print percentage
shaalaa.com
Representation of Algorithms - Pseudocode
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Write a pseudocode that reads two numbers and divides one by another and displays the quotient.
Write the pseudocode to print all multiples of 5 between 10 and 25 (including both 10 and 25).
Write the pseudocode to print the bill depending on the price and quantity of an item. Also print Bill GST, which is the bill after adding 5% of the tax to the total bill.
Write pseudocode to calculate the factorial of a number (Hint: Factorial of 5, written as 5! = 5 × 4 × 3 × 2 × 1).