字符串型转整型 – stringToInt

将字符串转换为整数。 若字符串不是整数,上位机模拟运行时会提示类型错误

定义

int stringToInt(string s);

参数

s:

字符串形式的整数

返回值

整数

示例

int a;
a=stringToInt("2020"); // a 的值变为整数2020