tgoop.com/Beprogramming/1404
Create:
Last Update:
Last Update:
2) يطبع كلمه hello
10 مرات كما هو الحال باستخدام for لكن بال while
#include <iostream>
#include <string>
using namespace std ;
void main ()
{int i=0;
while (i<10)
{i++;
cout<<"hello"<<endl;
}
}
BY مستـ1ــوى حاسوب
Share with your friend now:
tgoop.com/Beprogramming/1404