C++中实现两个数相加的运算,可以使用加法运算符“+”。加法运算符可以用于整型、浮点数和字符串类型,其中,整型和浮点数的加法运算符表示的是数字的加法运算,而字符串类型的加法运算符表示的是字符串的拼接运算。
整型和浮点数的加法运算:
int a = 10; int b = 20; int c = a + b; // c = 30 float d = 3.14; float e = 2.71; float f = d + e; // f = 5.85
字符串类型的加法运算:
string s1 = "hello"; string s2 = "world"; string s3 = s1 + s2; // s3 = "helloworld"
本文链接:http://task.lmcjl.com/news/12302.html