C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:快来看快来看快来看注意事项:主要注意格式,代码很easy参考代码:#include<stdio.h>int main(){ printf("**********************…… 题解列表 2019年03月06日 1 点赞 0 评论 512 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:绝对精简,你值得一看的c语言注意事项:呃呃,没啥注意点参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int…… 题解列表 2019年03月06日 1 点赞 0 评论 483 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { //累加分解的因子 public static int factor…… 题解列表 2019年03月06日 0 点赞 0 评论 1039 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码)(最简单的题解,没有之一) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,a,b,r; scanf("%d%d",&m,&n); a=m;b=n;…… 题解列表 2019年03月06日 1 点赞 0 评论 735 浏览 评分:0.0
C二级辅导-公约公倍 (Java代码) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2019年03月06日 0 点赞 0 评论 912 浏览 评分:0.0
蓝桥杯算法提高VIP-第二大整数 (C语言代码)新手可以来看一下:冒泡法!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,a[20]; int m,n; while(scanf("%d",&a[i])!=EOF) { …… 题解列表 2019年03月06日 0 点赞 3 评论 616 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路: S1 = S 第一天 吃 1/2 * S1 + 1 剩 S2 = S1 - (1/2 * S1 + 1) = 1/2 * S1 - 1   题解列表 2019年03月06日 0 点赞 0 评论 589 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 可以拓展你的运用哦 摘要:解题思路:利用字符串数组遇到 '\0'停止录入。再利用strcmp函数比较即可注意事项:排序的运用参考代码:#include<stdio.h>#include<stdlib.h>#in…… 题解列表 2019年03月06日 0 点赞 0 评论 977 浏览 评分:0.0
BREEZE------之你猜 有没有小技巧系列(用的C) 摘要:一个三位数可以拆成三位来,然后利用math。h里的pow函数就可以方便的解决问题啦!#include<stdio.h>#include<math.h>int main(){ int n,s1,s…… 题解列表 2019年03月06日 0 点赞 0 评论 1017 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:笨办法,好懂#include<stdio.h>int main(){int i,t,n,a[3][3]; for(i=0;i<3;i++){ for(…… 题解列表 2019年03月06日 5 点赞 0 评论 562 浏览 评分:0.0