Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Nested For Loop

... ‫ أخرى‬for ‫ داخل جملة‬for ‫ بمعنى اخر ان يتم وضع جملة‬... ‫ فيما بينهم‬for ‫وهي عملية تداخل اكثرمن جملة‬
:‫ وكما يلي‬... ‫ الثانية التي داخلها بالكامل‬for ‫وهنا ال يتم زيادة عداد الجملة األولى اال بإكمال جملة‬

Q: Write a program to print numbers (from 1 to 10) three times.

#include <iostream>
using namespace std;

int main() {

for (int i = 1; i <= 3;i++) {

for (int j = 1; j <= 10; j++) {


cout << j;
}

cout << "\n"; // line for each group of numbers


}
}

29
goto Statement
‫ وأيضا يجي مراعاة عدم الدخول في حالة‬... ‫هي عبارة تستخدم للقفز لنقطة محددة من البرنامج دون قيد او شرط‬
)goto( ‫) وكما يوضح المثال التالي حيث ان‬While( ‫) مثل ما يحدث مع جملة‬infinite Loop( ‫من التنفيذ الالنهائي‬
‫) المحدد لها‬Label( ‫تعمل على القفز المباشر الى السطر الذي يحتوي الـ‬

#include <iostream>
using namespace std;

int main() {
int x =5;

loop: // This called label(1st)


cout << "Print This";
if (x ==7) {
goto loop2; // here we called the 2nd Label
}
x++;
goto loop; // here we called the 1st Label

loop2: // This called label(2nd)


cout << "bye";

30

You might also like