Chuyen đổi string thành int trong cpp
#include "stdafx.h"
#include <iostream>
#include <string>
int _tmain(int argc, _TCHAR* argv[])
{
std::string str = "123";
int num;
// using stoi() to store the value of str1 to x
num = std::stoi(str);
std::cout << num;
return 0;
}
Lưu ý: Cài đủ thư viện Stoi