博客园 首页 私信博主 显示目录 隐藏目录 管理
摘要: 安利一波快捷键的使用方法 Ctrl + E + D = 代码格式化1 Ctrl + K + F = 代码快速格式化2 Ctrl + E + C = 注释代码1 Ctrl + K + C = 注释代码2 Ctrl + E + U = 取消注释代码1 Ctrl + K + U = 取消注释代码2 Tab 阅读全文
posted @ 2020-11-29 16:23 Jason_William 阅读(167) 评论(1) 推荐(2)
摘要: | 这个作业属于那个课程: | C语言程序设计II | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/11557 | | 我在这个课程的目标是: | 学会并掌握分支结构并熟练运用s 阅读全文
posted @ 2020-11-26 13:28 Jason_William 阅读(253) 评论(16) 推荐(7)
摘要: | 这个作业属于那个课程: | C语言程序设计II | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/11531 | | 我在这个课程的目标是: | 学会并掌握分支结构并熟练运用i 阅读全文
posted @ 2020-11-19 16:01 Jason_William 阅读(259) 评论(19) 推荐(4)
摘要: ##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 阅读(287) 评论(0) 推荐(1)
摘要: ###形参和实参: 阅读全文
posted @ 2020-11-12 19:48 Jason_William 阅读(236) 评论(0) 推荐(1)
摘要: | 这个作业属于那个课程: | C语言程序设计II | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/11494 | | 我在这个课程的目标是: | 学会并掌握函数的定义和调用 | 阅读全文
posted @ 2020-11-12 15:32 Jason_William 阅读(274) 评论(18) 推荐(5)
摘要: 7-1 求简单交错序列前N项和 (15分) #include <stdio.h> double my(int n); int main(){ int x; double y; scanf("%d",&x); y=my(x); printf("sum = %.3f",y); return 0; } d 阅读全文
posted @ 2020-11-07 20:57 Jason_William 阅读(263) 评论(1) 推荐(2)
摘要: | 这个作业属于哪个课程 | https://edu.cnblogs.com/campus/zswxy/CST2020-2/ | | : : |: : | | 这个作业要求在哪里| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/114 阅读全文
posted @ 2020-11-05 16:38 Jason_William 阅读(353) 评论(22) 推荐(5)
摘要: | 这个作业属于哪个课程: | https://edu.cnblogs.com/campus/zswxy/CST2020-2/ | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/1 阅读全文
posted @ 2020-10-24 16:31 Jason_William 阅读(233) 评论(7) 推荐(4)
摘要: | 这个作业属于C语言程序设计课程 😐https://edu.cnblogs.com/campus/zswxy/CST2020-2 | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-1/homewor 阅读全文
posted @ 2020-10-10 16:45 Jason_William 阅读(386) 评论(15) 推荐(10)