Skonstruuj algorytm w postaci programu generujacy losową liczbe z zakresu [5;150] a nastepnie wyświetlający wszystkie dzielniki całkowite wylosowanej wartosci oraz ich liczbę, Dam naj !
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <cstdio>
#include <iomanip>
using namespace std;
int main()
{
srand(time(NULL));
int a=rand()%146+5;
int s=0;
cout <<"wylosowana liczba to "<<a<<endl;
for (int i=1;i<=a;i++)
{
if (a%i==0)
{
cout <<"liczba "<<a<< " jest podzielna przez "<<i<<endl;
s++;
}
}
cout <<"liczba dzielnikow to "<<s;
cin.ignore();
getchar();
return 0;
}