forked from Nastasia8/informatics_42_2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4_Лаба_6.cpp
59 lines (53 loc) · 892 Bytes
/
4_Лаба_6.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <cmath>
using namespace std;
int x,y,s,s1,f[0],x1,w,n,m,k;
void fun ()
{
while (s!=s1)
{
f[k]=x1%n/m;
s1++;
n=n*10;
m=m*10;
w=w*f[k];
}
}
int main()
{
zan:
cout <<"Введите шестизначное число: ";
if (cin>>x)
{
x1=x;
s=0;
s1=0;
n=10;
m=1;
k=0;
w=1;
while (x)
{
x=x/10;
s++;
}
if (s==6)
{
fun ();
cout <<endl<<"Произведение цифр данного числа: "<<w;
return 0;
}
else
{
cout <<endl<<"Введено не шестизначное число"<<endl;
goto zan;
}
}
else
{
goto eror;
}
eror:
cout <<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<< "Введённые символы некоректны";
return 0;
}