Loops
الموقع: | منصة الحسن للتعلم |
المساق: | Structured Programming |
كتاب: | Loops |
طبع بواسطة: | مستخدم ضيف |
التاريخ: | الخميس، 21 نوفمبر 2024، 11:49 PM |
الوصف
Objectives
The while, and for repetition statements to execute statements in a program repeatedly;
The break and continue program control statements to alter the flow of program control;
Counter Controlled Loops
Counter Controlled Loops
for Loop
while loop
do-while
break and continue statements - basics
Examples
Set of Examples
Summation of numbers in a range given by the user
For-loop example - salary annual raise
Avg quiz of 10
Avg for N students
Simple Series summation
Students' grade processing
Second Max
series calcation (using do while)
Sentinel Controlled Loop
Sentinel Controlled Loop
Sentinel Controlled Loop