有什么办法可以将字符串转换成整数?

时间:2020-06-13 16:23:31

标签: c++

我有一个问题。

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

0 个答案:

没有答案