السلام عليكم
سؤالك واضح يابشمهندس
استخدم \n و \t لتنسيق الكتابة
n\ بتنزل سطر واحد وممكن تكتب اكتر من واحدة عشان تنزل اكتر من سطر ويعادلها <<endl
\t بتاخد مسافة tab لو عاوز تكتب فى اى مكان هتستخدمهم
شوف الكود دا
كود:
#include<iostream>
using namespace std;
int main()
{
cout<<endl; // end of the line and start new line ***** to \n
cout<<"\t\t\t In the name of allah "<<endl;
cout<<"\n";
cout<<"\t Name : Mohamed "<<endl;
cout<<"\t faculty of computers and Information "<<endl;
cout<<"\t Phone : *********"<<endl;
return 0;
}