C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("He…… 题解列表 2018年10月25日 0 点赞 0 评论 550 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n; scanf("%d%d%d",&a,&b,&c); if(a>b) { n=a; }…… 题解列表 2018年10月25日 0 点赞 0 评论 486 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n; scanf("%d%d%d",&a,&b,&c); if(a>b) { n=a; }…… 题解列表 2018年10月25日 0 点赞 0 评论 745 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c",&c1); scanf("%c",&c2); s…… 题解列表 2018年11月02日 0 点赞 0 评论 656 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int k; double m,p,q,s,r,t; int i=1; //printf("请输入当月利润…… 题解列表 2018年10月26日 0 点赞 0 评论 646 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (Java代码) 摘要:解题思路:注意事项:参考代码import java.util.Scanner;public class Main { public static void main(String[] args) { …… 题解列表 2018年10月26日 0 点赞 0 评论 492 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (Java代码) 摘要:解题思路:注意事项:参考代码import java.util.Scanner;public class Main { public static void main(String[] args) { …… 题解列表 2018年10月26日 1 点赞 0 评论 924 浏览 评分:0.0
数列有序 (C语言代码) 摘要:解题思路: 根据m去数组中查找到相应位置k,然后把k-(n-1)的数据往后移动一个位置,最后再把m放到a[k]中即可。参考代码:#include <stdio.h> #define N 105 i…… 题解列表 2018年10月26日 2 点赞 0 评论 947 浏览 评分:0.0
字符逆序 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String []args) …… 题解列表 2018年10月26日 0 点赞 0 评论 700 浏览 评分:0.0
DNA (C语言代码) 摘要:#include "stdafx.h"int main(){ int i,j,k,l,n, a[15], b[15]; scanf("%d", &n); for (i = 0;…… 题解列表 2018年10月26日 0 点赞 0 评论 579 浏览 评分:0.0