我有一个问题。
string test;
int sum = 0;
cout << "podaj liczbe; ";
cin >> test;
cout << "dlugosc: " << test.length() << endl;
for(int i = 0; i < test.length(); i++)
{
cout << test[ i ] << endl;
}
cout << "suma" << sum << endl;
让我们说我将一个数字234
放入字符串中,程序将在屏幕上向我显示2, 3, 4
,并且有什么方法可以创建int
的值恰好为234
?类似地,如果我将555
数字放入字符串中,是否可以用int
值创建555
?