C语言程序设计教程(第三版)课后习题10.7 更简单!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100],b[100]; int n,i,j,m; scanf("%d",&n); getchar…… 题解列表 2018年05月21日 3 点赞 0 评论 1813 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int Judge(int year){ if((year%4==0&&year%100!=0)||year%400==0) …… 题解列表 2018年05月21日 0 点赞 0 评论 730 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:当然是用数组中的“冒泡法”了。注意事项:无参考代码:#include"stdio.h"int main() { int i,b,c,d; int a…… 题解列表 2018年05月21日 0 点赞 0 评论 911 浏览 评分:0.0
排列 (C++代码) 摘要:解题思路:注意事项:不用排序参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; …… 题解列表 2018年05月21日 0 点赞 0 评论 1477 浏览 评分:0.0
JAVA 字符串角度的解题法 JAVA 摘要:import java.util.*;public class a1073homework_of_brother {public static void main(String args[]){ Sc…… 题解列表 2018年05月22日 1 点赞 0 评论 1042 浏览 评分:0.0
采药 (C语言代码) 摘要:解题思路:01背包+动态规划 思想可以网上找注意事项:参考代码:#include <stdio.h>int max(int a,int b);int main(){ int T,M,i,j; int…… 题解列表 2018年05月22日 0 点赞 0 评论 888 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char name[20]; char num[20]; int sc…… 题解列表 2018年05月22日 0 点赞 0 评论 1061 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路: 本题目在解题思路方面基本上不存在审题障碍。直接看代码吧。注意事项:一定注意输出结果的场宽。注意是保留两位小数。所以注意看输出语句。参考代码:#include<stdio.h> int m…… 题解列表 2018年05月22日 0 点赞 0 评论 1057 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:两种思路供大家参考:1.采取单循环从i=100到i=999.依次判定。 2.采取三重循环嵌套,注意事项:无参考代码:#include<stdio.…… 题解列表 2018年05月22日 1 点赞 0 评论 624 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[100],b[100];int main(){ a[1]=1; a[2]=2; a[3]=3; int i=0,j,num;…… 题解列表 2018年05月22日 0 点赞 0 评论 617 浏览 评分:0.0