第十周学习总结
Posted dawan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十周学习总结相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include "C:UsersAdministratorDesktopCTestoutpart1.c"
int main()
{
int a=1,b=2,c;
c=add(a,b);
PR("%d",c);
return 0;
}
#include <stdio.h>
#define PR printf
int add(int a,int b)
{
int c;
c=a+b;
return c;
}
以上是关于第十周学习总结的主要内容,如果未能解决你的问题,请参考以下文章
## 20155336 2016-2017-2《JAVA程序设计》第十周学习总结