(算法练习.01)A+B问题

A+B问题非常简单,作为练习算法题目的开头,嘻嘻嘻!
在这里插入图片描述

class Solution {
public:
    /**
     * @param a: An integer
     * @param b: An integer
     * @return: The sum of a and b 
     */
    int aplusb(int a, int b) {
        // write your code here
        return a+b;
    }
};

在这里插入图片描述

发布了19 篇原创文章 · 获赞 4 · 访问量 542

猜你喜欢

转载自blog.csdn.net/zhuangww05/article/details/104623738
今日推荐