摘要: 习题8-6 删除字符 (20分) 本题要求实现一个删除字符串中的指定字符的简单函数。 函数接口定义: void delchar( char *str, char c ); 其中char *str是传入的字符串,c是待删除的字符。函数delchar的功能是将字符串str中出现的所有c字符删除。 题目就 阅读全文
posted @ 2021-09-15 23:54 就是想学习 阅读(373) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> void splitfloat(float x, int *intpart, float *fracpart){ *intpart = (int) x; *fracpart = x - *intpart; } int main(void){ float numb 阅读全文
posted @ 2021-09-15 16:19 就是想学习 阅读(852) 评论(0) 推荐(0) 编辑
摘要: 输入一个字符串,把该字符串的前三个字母移到最后,输出变换后的字符串。比如输入"abcdef",输出为"defabc" #include <stdio.h> #include <string.h> #define MAXN 100 int main(void){ int i, length; char 阅读全文
posted @ 2021-09-15 11:14 就是想学习 阅读(94) 评论(0) 推荐(0) 编辑