博客园 首页 私信博主 显示目录 隐藏目录 管理
摘要: ##7-1 C程序设计 习题 7.3 函数实现两个数的最大值 (2分) #include<stdio.h> int max(int a,int b) { printf("%d",a>b?a:b); } int main() { int a,b; scanf("%d%d",&a,&b); max(a, 阅读全文
posted @ 2020-11-12 19:58 Jason_William 阅读(292) 评论(0) 推荐(1)
摘要: ###形参和实参: 阅读全文
posted @ 2020-11-12 19:48 Jason_William 阅读(240) 评论(0) 推荐(1)
摘要: | 这个作业属于那个课程: | C语言程序设计II | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/11494 | | 我在这个课程的目标是: | 学会并掌握函数的定义和调用 | 阅读全文
posted @ 2020-11-12 15:32 Jason_William 阅读(275) 评论(18) 推荐(5)