课程名称:趣味c++入门
章节名称:第七章 函数是什么
讲师姓名:Redknot
内容概述:练习1:使用函数来交换两个数的值
#include<stdio.h>
void swap(int *a,int *b)
{
int temp=*a;
*a=*b;
*b=temp;
}
int main(int argc,char **argv)
{
int a=10;
int b=20;
swap(&a,&b);
return 0;
}
练习2:利用递归来求一个数的阶乘
#include<stdio.h>
int fact(int n)
{
if(n==1)
{
return 1;
}
else
{
return n*fact(n-1);
}
}
int main()
{
int x=10;
int res=fact(x);
printf("%d\n",res);
return 0;
}
学习心得:温故知新
学习截图: