الحاسوب

المواد المشتركة أول ثانوي

icon

أسئلة الفصل - الطباعة على شاشة المخرجات

السؤال الأول: اكتب برنامجاً بلغة C++ لطباعة الجمل التالية:

الجملة المطلوبة الجملة البرمجية
    • This is a 'book'.

#include <iostream>
using namespace std;
int main()
{
cout<<" This is a \'book\'." << endl;

    return 0;
}

    • What is it?

#include <iostream>
using namespace std;
int main()
{
cout<<" What is it\?" << endl;

    return 0;
}

 

    • What is your address?

#include <iostream>
using namespace std;
int main()
{
cout<<" What is your address\?" << endl;

    return 0;
}

 

    • That’s a good idea.

#include <iostream>
using namespace std;
int main()
{
cout<<" That\'s a good idea." << endl;

    return 0;
}

 

    • That is exactly what we want to learn.

#include <iostream>
using namespace std;
int main()
{
cout<<"
That is exactly what we want to learn." << endl;

    return 0;
}

    • I open the "door".

#include <iostream>
using namespace std;
int main()
{
cout<<"
I open the \"door\"." << endl;

    return 0;
}

    • I need to look at your car.

#include <iostream>
using namespace std;
int main()
{
cout<<"
I need to look at your car." << endl;

    return 0;
}

    • I prefer to go to school.

#include <iostream>
using namespace std;
int main()
{
cout<<"
I prefer to go to school." << endl;

    return 0;
}

    • Which is faster a train / a bus?

#include <iostream>
using namespace std;
int main()
{
cout<<"
Which is faster a train \/ a bus\?" << endl;

    return 0;
}

    • I eat breakfast at 8:00 a.m.

#include <iostream>
using namespace std;
int main()
{
cout<<"
I eat breakfast at 8\:00 a\.m\." << endl;

    return 0;
}

    • 2016 \ 12

#include <iostream>
using namespace std;
int main()
{
cout<<"
2016 \\ 12 "<< endl;

    return 0;
}

    • He said: "Be  Patient"

#include <iostream>
using namespace std;
int main()
{
cout<<"
He said: \"Be  Patient\"" << endl;

    return 0;
}

    • The characters 'C' and 'D'.

#include <iostream>
using namespace std;
int main()
{
cout<<"
The characters \'C\' and \'D\'." << endl;

    return 0;
}

    • Amman \ Aqaba \ Amman.

#include <iostream>
using namespace std;
int main()
{
cout<<"
Amman \\ Aqaba \\ Amman." << endl;

    return 0;
}

    • 'A'  'h'  'm'  'a'  'd'

#include <iostream>
using namespace std;
int main()
{
cout<<" \
'A\'  \'h\'  \'m\'  \'a\'  \'d\'" << endl;

    return 0;
}

السؤال الثاني: اكتب برنامجاً يطبع اسمك من ثلاثة مقاطع.

السؤال الثالث:اكتب برنامجاً يطبع الكلمات الثلاثة الآتية (Book, Pen, School) كل واحدة على سطر منفرد بدون استخدام endl.

السؤال الثالث

السؤال الرابع: اكتب برنامجاً يظهر صوت الملاحظات بنظام التشغيل.

السؤال الخامس: اطبع اسم مدرستك بين علامات تنصيص.

5

السؤال السادس: اكتب برنامج يطبع الجدول التالي بحيث يظهر كل عامود في حقل مستقل.

No    Student      Mark

1      Abed         99

2      Omar         98

3      Mawada     98

4      Ali             97

5      Noor          95     

6

السؤال السابع: علل ما يأتي:

أ- كتابة الملاحظات في البرنامج.

لتوثيق البرنامج وتوضيح جمل البرنامج
 

ب- استخدام Escape Sequence في البرنامج.

        تستخدم في تنسيق مخرجات الجمل النصية

السؤال الثامن: اطبع الجمل التالية على سطر واحد وفوق بعضها البعض:

I love a book

Get your

Eat

8