1. Declare a variable which has the age of the person. Print the user’s name as many times as his age
* While loop:
* While loop:
2. The program displays even numbers from 1 to 30.
* While loop:
* While loop:
* For loop:
* Do...While loop:
4. The program will accept integers and display them until zero (0) is entered
* While loop:
* Do...While loop:
* While loop:
* For loop:
6. Write a program to print the series 100, 95 , 90, 85,………., 5.
* While loop:
* While loop:
* Do...While loop:
7. Accept two numbers num1 and num2. Find the sum of all odd numbers between the two
7. Accept two numbers num1 and num2. Find the sum of all odd numbers between the two
numbers entered :
* While loop:
* While loop:
8. Write a program to generate the Fibonacci series. (1,1,2,3,5,8,13,………)
* While loop:
* While loop:
* For loop:
* Do...While loop:
- Vòng for thường được sử dụng khi biết trước số lần lặp.
- While và Do...While thường sử dụng khi không biết trước số lần lặp.
- Do...While và While là tương đương nhưng Do ... While sử dụng khi cần thực hiện một khối lệnh nào đó trước khi xem nó có thỏa mãn đk hay không, có nghĩa nó đảm bảo khối lệnh đó được thực hiện ít nhất 1 lần.
No comments:
Post a Comment