#include <iostream>
#include <math.h>
#include <string>
#include <sstream>
using namespace std;
int main() {
string input;
int value,
cout << "Input your number: " << endl;
cin >> input;
const int count = input.length();
istringstream buffer(input);
buffer >> value;
if (count == 4) {
我的程序假設計算的數字的長度,如果它是4,然後編碼數字。例如。 1234轉到其他一些數字。我的問題是如何獲取每個個人數字並使用它們。例如。取(1 + 1)/ 10或(3 + 2)/ 10。如何找到一個數字的位置並使用它