Monday, 10 March 2014
getline: Another Method of Taking Input in C Plus Plus
In previous lessons we have learn that the keyword cin is used to get input from the user. But I want to tell you something about cin keyword that is very important to know. The keyword cin separates the words or "group of characters differentiated by spaces". It only keeps the first group of characters (or first word) and ignores the rest of the characters coming after the space.
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
A Program Using "While" Loop
Subscribe to:
Posts (Atom)


