课程名称:趣味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;
}
学习心得:温故知新
学习截图:
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦