//ex3_3.cpp //Создает число из отдельных цифр #include using namespace std; #include //для getche() int main() { char ch; unsigned long total =0; //в этой переменной — число cout <<"\nВведите число:"; while((ch=getche())!='\r ' ))//выход по нажатию Enter total =total*10 +ch-'0'; //прибавить число к total*10 cout <<"\nПолучилось число:" <