вино
unknown
c_cpp
2 years ago
267 B
7
Indexable
#include <iostream>
#include <string>
using namespace std;
int main()
{
int a{126}, b; // или 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...