Kotlin do-while Loop
The do-while loop is similar to while loop except one key difference. A do-while loop first execute the body of do block after that it check the condition of while.
As a do block of do-while loop executed first before checking the condition, do-while loop execute at least once even the condition within while is false. The while statement of do-while loop end with ";" (semicolon).
Syntax
do{
//body of do block
}
while(condition);
Example of do -while loop
Let's see a simple example of do-while loop printing value 1 to 5.
fun main(args: Array
var i = 1
do {
println(i)
i++
}
while (i<=5);
}
Output:
1
2
3
4
5
Example of do -while loop even condition of while if false
In this example do-while loop execute at once time even the condition of while is false.
fun main(args: Array
var i = 6
do {
println(i)
i++
}
while (i<=5);
}
Output:
6
I NTRODUCTION TO OOP,CLASSES & OBJECTS 1. Use of scope Resolution of Operators. 2. Define a function outside a using scope resolution operators. 3. Write a program to calculate the area of circle, rectangle and square using function overloading. 4. Write a program to calculate the area of circle, rectangle and square using with class & object. 5. Write a program to demonstrate the use of returning a reference variable. 6. Create a class student,stores the details about name,roll no,marks of 5 subject,1.get function accept value of data members,2. display function to display,3.total function to return total of 5 subjects marks. 7. Create function power() in c++. & Create function power() in c++ and default argument. 8. Write a C++ program to swap the value of private data members from 2 different classes. 9. Write a program to illustrate the use of this pointer. 10. An election is contested by five candidates. The candidates are numbered 1 to 5 and the voting is do...
Comments
Post a Comment