C语言程序设计教程(第三版)课后习题8.9 (C语言代码)指针自增得注意 摘要:#include <stdio.h>#include <ctype.h>void calculate(int *,int *,int *,int *);void main(void){ int …… 题解列表 2018年02月28日 0 点赞 0 评论 957 浏览 评分:0.0
蓝桥杯算法提高VIP-格子位置 (Java代码) 摘要: import java.util.Scanner; public class Main { /** * @BoyHonest */ public static v…… 题解列表 2018年02月28日 0 点赞 0 评论 1190 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[30],num; scanf("%s",a); num=strlen(a); while(num)…… 题解列表 2018年02月28日 0 点赞 0 评论 945 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a+b)…… 题解列表 2018年02月28日 0 点赞 0 评论 839 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("******************************\n"); prin…… 题解列表 2018年02月28日 0 点赞 0 评论 668 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:空格要用2个==号 不然不会输出others的内容参考代码:#include<stdio.h>int main(){ int digit,others,alph,kong; ch…… 题解列表 2018年02月28日 0 点赞 0 评论 846 浏览 评分:0.0
校门外的树 (C语言代码) 摘要:解题思路:要注意输入M组区间时是分步进行M次操作(移出)的。注意事项:参考代码:#include<stdio.h>int main(){ int i,j,L,M,s,e,count=0; …… 题解列表 2018年02月28日 2 点赞 0 评论 1242 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,n,m,s,t; int a[10000]; a[0]=0; for(i=1;i<1…… 题解列表 2018年02月28日 0 点赞 0 评论 987 浏览 评分:0.0
【亲和数】 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,s; int M,A,B; scanf("%d",&M); for(i=1;i<=M;i++…… 题解列表 2018年02月28日 0 点赞 0 评论 1024 浏览 评分:0.0
C语言训练-大、小写问题 (C语言代码) 摘要:/* 方法一#include <stdio.h>#include <string.h>void select(char *);int main(void){ cha…… 题解列表 2018年03月01日 0 点赞 0 评论 1052 浏览 评分:0.0