2017.12 程序设计基础月考(期末模拟)

B. SD 函数

单点时限: 1.0 sec

内存限制: 256 MB

定义函数 SD,计算两个数的和及两个数的差。

//********** Specification of SD **********
void SD(int a, int b, int *p);
/* PreCondition:  a,b,a+b,a-b是在 [-100,100] 范围内的整数
    PostCondition: p所指的整数值是a+b, p+1所指的整数值是a-b
*/

只需按要求写出函数定义,并使用给定的测试程序测试你所定义函数的正确性。
不要改动测试程序。测试正确后,将测试程序和函数定义一起提交。

#include <stdio.h>

//********** Specification of SD **********
void SD(int a, int b, int *p) {

}

/***************************************************************/
int main() {
    int a, b, p[2];
    scanf("%d%d", &a, &b);
    SD(a, b, p);
    printf("%d %d\n", p[0], p[1]);
    return 0;
}

样例

Input
8 5
Output
13 3
Input
-5 -6
Output
-11 1