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
1 Write a shell script to execute following commands 1. Sort file abc.txt and save this sorted file in xyz.txt 2. Give an example of : To execute commands together without affecting result of each other. 3. How to print “this is a three –line 1. Text message” 4. Which command display version of the UNIX? 5. How would u get online help of cat command? echo “sorting the file” sort abc.txt > xyz.txt echo “executing two commands” who ; ls echo “this is \n a three-line \n Text message” # use -e option if required echo “The version is `uname -a`” echo “Help of cat command” man cat 2 Write a shell script to execute following commands 1. How would u display the hidden files? 2. How delete directory with files? 3. How would user can do interactive copying? 4. How would user can do interactive deletion of files? 5. Explain two functionality of “mv” command with example? echo “1. How would u display the hidden files” echo “2. How delete directory with files” echo...
Comments
Post a Comment