C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void Mystrcat(char *a,char *b,int m){ int num = 0; while(*a != '…… 题解列表 2018年03月13日 0 点赞 0 评论 652 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int n,m,i,j; char str[100]; char str1[100];scanf("%d%s%d"…… 题解列表 2018年01月22日 0 点赞 0 评论 500 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char b[80];void cp(int n,char s[],int m){ int…… 题解列表 2017年12月17日 0 点赞 0 评论 738 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n,i,j,m; char a[100]; scanf("%d",&n); g…… 题解列表 2021年01月21日 0 点赞 0 评论 171 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:交流与分享参考代码:#include<stdio.h>int func(char *s,int m);int main(){ char s[80]; int m,n…… 题解列表 2017年09月04日 5 点赞 0 评论 1072 浏览 评分:0.0