أكتب برنامج لايجاد مضروب أي رقم يدخله المستخدم باستخدام do while
- برمجة
- برمجة سي بلس بلس
- 2021-04-13
- salsabeelalhams99111801528
الأجوبة
#include<iostream>
using namespace std;
int main(){
int x,mul=1;
cout<<"Enter the number : ";
cin>> x;
do
{mul*=x;
x--;
} while(x>0);
cout<<" the result is : "<<mul;
return 0;
}
القوائم الدراسية التي ينتمي لها السؤال