摘要: 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 阅读(228) 评论(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 阅读(34) 评论(0) 推荐(0) 编辑