C语言程序设计教程(第三版)课后习题10.7 指针(C语言代码) 摘要:#include <stdio.h> int main() { int n, m; scanf("%d", &n); char s[n+1]; scan…… 题解列表 2017年11月11日 1 点赞 0 评论 800 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h>#include <cstring>using namespace std; int ma…… 题解列表 2017年11月13日 0 点赞 0 评论 830 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:参考代码:#include <stdio.h> #include <string.h> int main(void) { char str1[512], str2[512]; int…… 题解列表 2017年11月23日 0 点赞 0 评论 787 浏览 评分:0.0
代码简短能完成就好 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string a; int m,n; cin >> m; cin >…… 题解列表 2017年12月06日 0 点赞 0 评论 634 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:参考代码:#include<stdio.h> void cut(char a[],int n) { int i,m; char b[100],*p; p=b; for(i=0;…… 题解列表 2017年12月10日 1 点赞 0 评论 906 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun(char a[],char b[],int d,int c);int main(){ int n=0,m=0; ch…… 题解列表 2017年12月14日 0 点赞 0 评论 818 浏览 评分: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 评论 792 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int wmw(char a[],char b[]){ int i,n,m; cin>>n;…… 题解列表 2017年12月23日 0 点赞 0 评论 741 浏览 评分: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 评论 566 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>#include<ctype.h>char str(…… 题解列表 2018年01月25日 0 点赞 0 评论 1055 浏览 评分:0.0