برنامه ای بنویسید که اعداد بخش پذیر بر 5 بین m و n راچاپ کند.
دوشنبه, ۵ تیر ۱۴۰۲، ۱۲:۱۶ ب.ظ
شروع برنامه نویسی به زبان ++c
#include
using namespace std;
int main()
{
int n,m;
cout << "enter minimum : ";
cin >> n ;
cout << "enter maximum : ";
cin >> m;
for (int i = n + 1; i < m; i++)
{
int b = i % 5;
if (b == 0)
cout << i<<'t';
}
system("pause");
}