Вино
unknown
c_cpp
2 years ago
314 B
3
Indexable
#include <iostream> #include <string> using namespace std; int main() { int a{126}, b; cout << "Введите трёхзначное число: " << endl; cin >> a; b = a % 10; cout << b; a /= 10; b = a % 10; cout << b; a /= 10; b = a % 10; cout << b; return 0; }
Editor is loading...