منتدى رواد الفضاء
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.
منتدى رواد الفضاء

منتدى عام يعتني بجميع هموم الشباب
 
الرئيسيةالرئيسية  أحدث الصورأحدث الصور  التسجيلالتسجيل  دخول  

 

 Sample Fragments using nested for loops

اذهب الى الأسفل 
كاتب الموضوعرسالة
Admin
Admin



المساهمات : 437
تاريخ التسجيل : 05/11/2007

Sample Fragments using nested for loops Empty
مُساهمةموضوع: Sample Fragments using nested for loops   Sample Fragments using nested for loops Icon_minitimeالأربعاء يونيو 24, 2009 12:28 pm

Write c++ program to get the following result

1
2 3
4 5 6
7 8 9 10
11 12 13 14 15


The program


#include

main ()

int x,y;
z=0;

for (x=1;x<=4;x++)
{
for (y=1;y<=x;y++)
{
z++;
cout<<<"\t";
}
cout<<"\n";
}
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://uaegate.ahlamontada.com
Admin
Admin



المساهمات : 437
تاريخ التسجيل : 05/11/2007

Sample Fragments using nested for loops Empty
مُساهمةموضوع: رد: Sample Fragments using nested for loops   Sample Fragments using nested for loops Icon_minitimeالأربعاء يونيو 24, 2009 12:29 pm

Write
c++ program to get the following result





11
12 13
14 15 16
17 18 19 20
21 22 23 24 25





The
program








#include<iostream.h>





main
()





int
x,y;


z=10;

for (x=1;x<=5;x++)
{
for (y=1;y<=x;y++)
{
z++;
cout<<z ";
}
cout<<"\n";
}
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://uaegate.ahlamontada.com
Admin
Admin



المساهمات : 437
تاريخ التسجيل : 05/11/2007

Sample Fragments using nested for loops Empty
مُساهمةموضوع: رد: Sample Fragments using nested for loops   Sample Fragments using nested for loops Icon_minitimeالأربعاء يونيو 24, 2009 12:33 pm

xxxxxxxxxxxx
xxxxxxxxxxxx
xxxxxxxxxxxx
xxxxxxxxxxxx


#include

main ()
{
int rows,col ;



for (rows = 0; rows < 4; rows++)
{
for (col = 0; col < 12; col++)
{
cout << 'x' ;
}

cout<< "\n";
}


return 0 ;
}
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://uaegate.ahlamontada.com
Admin
Admin



المساهمات : 437
تاريخ التسجيل : 05/11/2007

Sample Fragments using nested for loops Empty
مُساهمةموضوع: رد: Sample Fragments using nested for loops   Sample Fragments using nested for loops Icon_minitimeالأربعاء يونيو 24, 2009 12:34 pm

ABCDEF
ABCDE
ABCD
ABC
AB
A


char outer, inner;
for (outer = 'F' ; outer >= 'A' ; outer--)
{
for (inner = 'A' ; inner <= outer; inner++)
{
cout <
}

cout<< "\n";
}
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://uaegate.ahlamontada.com
Admin
Admin



المساهمات : 437
تاريخ التسجيل : 05/11/2007

Sample Fragments using nested for loops Empty
مُساهمةموضوع: رد: Sample Fragments using nested for loops   Sample Fragments using nested for loops Icon_minitimeالأربعاء يونيو 24, 2009 12:38 pm

الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://uaegate.ahlamontada.com
 
Sample Fragments using nested for loops
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتدى رواد الفضاء :: الفئة الأولى :: ++C-
انتقل الى: