Showing posts with label Looping Statements. Show all posts
Showing posts with label Looping Statements. Show all posts

Saturday, April 19, 2014

Write a program to convert this temperature into centigrade degree

Temperature of a city in Fahrenheit degrees is input through the keyboard. Write a program to convert this temperature into centigrade degrees.






Convert temperature from degreee centigrade to fahrenheit....




Friday, March 28, 2014

Nested for loop statement



Output is as :
*
**
***
****
*****






for Statement or for loop



Output is as :
I=1
I=2
I=3
I=4
I=5
I=6
I=7
I=8
I=9
I=10





do Statement or do loop



Output is as :
I=1
I=2
I=3
I=4
I=5
I=6
I=7
I=8
I=9
I=10





While Statement or While loop



Output is as :
I=1
I=2
I=3
I=4
I=5
I=6
I=7
I=8
I=9
I=10