int和string怎么区别
字符串类型 string ,存储用“”(双引号)括起来的一串字符。存储的是字符串,如:
string myName="perona";
整数类型 int ,存储整数,不需要加引号。如:
int score=99;