03 2021 档案

摘要:C语言II博客作业02 一:作业头 这个作业属于哪个课程 https://edu.cnblogs.com/campus/zswxy/SE2020-3 这个作业要求在哪里 https://edu.cnblogs.com/campus/zswxy/SE2020-3/homework/11822 这个作业 阅读全文
posted @ 2021-03-12 23:02 stidies 阅读(142) 评论(2) 推荐(0)
摘要:C语言II博客作业01 一:作业头 这个作业属于哪个课程 https://edu.cnblogs.com/campus/zswxy/SE2020-3 这个作业要求在哪里 https://edu.cnblogs.com/campus/zswxy/SE2020-3/homework/11752 这个作业 阅读全文
posted @ 2021-03-01 19:52 stidies 阅读(251) 评论(1) 推荐(0)
摘要:1.1 字符切割 #include<stdio.h> int main() { char ch[1000]; int i = 0, m = 0; while ((ch[i] = getchar()) != '\n') { i++; } for (int j = 0; j < i; j++) { if 阅读全文
posted @ 2021-03-01 12:59 stidies 阅读(53) 评论(0) 推荐(0)