вино
Anonymous
c_cpp
10/05/2023 10:26 PM
356 B
19
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...