كود c++ يطبع كلمة hello word عشر مرات:
//c++ example to print the word hello 10 times
for(int i=1;i<=10;i++)
{
cout << "Hello world!" << endl;
}
كود يطبع الاعداد من 1 الى 5 :
for (int i = 0; i < 5; i++) {
cout << i << "\n";
}
كود طباعة الاعداد الزوجية من 0 الى 10 :
for (int i = 0; i <= 10; i = i + 2) {
cout << i << "\n";
}
كود طباعة الاعداد الزوجية بين 0 الى 100
//c++ example to print all even numbers between 0 to 100
for(int i=0;i<=100;i++)
if(i%2==0)
cout<
كود طباعة الاعداد الزوجية من 100 الى 0
//write c++ program to print even numbers from 100 to 0
for(int i=100;i>=0;i-=2)
{
cout<
كود طباعة الاعداد الفردية من 1 الى 10 :
for (int i = 1; i <= 10; i = i + 1) {
cout << i << "\n";
}
اكتب برنامج بلغة c++ يقوم بطلب علامات 5 مواد من المستخدم ومن ثم يحسب ويطبع متوسط العلامات:
//write c++ program prompts user to enter his marks of 5 subjects, then prints the average mark
int mark=0;
int totalmarks=0;
for(int i=1;i<=5;i++)
{
cout<<"enter mark of subject no."<>mark;
totalmarks=totalmarks+mark;
}
double averageMark=totalmarks/5;
cout<<"average mark : "<