Wednesday, 5 February 2014

A Program that Finds Minimum Number using Loop

Problem:

Write a program that inputs the series of 20 numbers and displays the minimum value.

Solution:

Here is the code that gets input of 20 numbers and displays the minimum value using for loop.

A Code to Display Alphabets using For-Loop

Problem:

Write a program to display alphabets from A to Z using for-loop.

Solution:

Here is the code that displays alphabets from A to Z using for-loop:

A Program that Displays Sum of Series Using Do-while Loop

Problem:

Write a program that displays the sum of the following series using do-while loop:
1 + 1/4 + 1/8 + ... + 1/100

Solution:

Here is the code that solves the problem given above:

A Program That Shows Given Output using While-Loop

Problem:

Write a program to show the following format using while loop:
The output to be shown using while-loop
Show this format using while-loop

Solution:

Here is the code, that shows the given format as output, using while-loop:

A Program Using "While" Loop

Problem:

Write a program to display the following format using while loop:
The format to be printed using while-loop
Print this format using while-loop

Solution:

Here is the code that shows the given format using "while" loop: