C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int i);int main(){ int Sn=0,n; scanf("%d",&n); for(int i=1;i…… 题解列表 2018年04月20日 0 点赞 0 评论 927 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int Sn=0,n; int a1=2,a2=2; scanf("%d",&n); for(int i=0…… 题解列表 2018年04月20日 0 点赞 0 评论 717 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ for(int i=1;i<20;i++) { printf("*"); } printf(…… 题解列表 2018年04月20日 2 点赞 2 评论 477 浏览 评分:6.0
蓝桥杯2014年第五届真题-分糖果 (C语言代码)循环链表求解 过程有点繁琐 思路不难 摘要:作了个大死...想用循环链表的方式求解,写了挺久的。。就当复习一下链表的操作吧!代码量有点长参考代码如下:#include <stdio.h> #include <stdlib.h> #inclu…… 题解列表 2018年04月20日 5 点赞 0 评论 1955 浏览 评分:0.0
蓝桥杯2013年第四届真题-横向打印二叉树 (C++代码) 摘要:解题思路:注意事项:参考代码:/* ...|-12 10-| ...|-8-| .......|...|-7 .......|-5-| ...........|-4 */ …… 题解列表 2018年04月19日 1 点赞 1 评论 2566 浏览 评分:8.7
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void test(char a[20],char b[20]);int main(){ ch…… 题解列表 2018年04月19日 0 点赞 0 评论 688 浏览 评分:0.0
C语言训练-角谷猜想 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 蓝桥1147 { public static void main(String[]args) …… 题解列表 2018年04月19日 0 点赞 0 评论 752 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int num[10]; int i,j,tmp; int min;//用min记录最小元素的数组下标 fo…… 题解列表 2018年04月19日 0 点赞 0 评论 1018 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String args[…… 题解列表 2018年04月19日 0 点赞 0 评论 817 浏览 评分:0.0
敲七游戏 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages){ …… 题解列表 2018年04月19日 1 点赞 0 评论 891 浏览 评分:0.0