Зертханалық жұмыс №2 Мамандығы: автоматтандыру дәне басқару
Орындаған:Kemelbekov Islam
Группа:АУк 21-4
Тізім бойынша: 9
Тексерген: Нургулжанова Асель
______________________«_______»____________
(бағасы) (қолы)
2022 жыл
1.Тапсырмалар
Блок схема
#include #include using namespace std;
int main()
{
int n,i;
int sum=0;
cout<< "Vvedite n: ";
cin>> n;
if (n<1)
{
cout<<"ERROR"<}
else
{
for(i=1; i<=n; i++)
sum=sum+i;
cout<}
}
2)
#include
#include #include #include using namespace std;
int main()
{
int x;
cout<<"x=";
cin >> x;
int product = 1;
while (x) {
product *= x % 10;
x /= 10;
}
std::cout << product << std::endl;
return 0;
}
3)
#include
using namespace std;
int main()
{
int n,i;
cout << "N=";
cin >> n ;
for (i = n; i > 0; i--) {
if (n%i==0) {
cout << "Бөлінгіштері: " << i << endl ;
}
}
system("pause");
return 0;
}