Skip to main content

简单示例cpp

这是一个简单的cpp add 方法示例

开发一个简单的add 方法

int add(int a,int b) {
return a + b;
}