程序员美工梦 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void f1_print(int n) { for(int i=1;i<=n;…… 题解列表 2018年05月13日 0 点赞 0 评论 1069 浏览 评分:0.0
上车人数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1000+5; struct num{ int b1,b…… 题解列表 2018年05月13日 0 点赞 0 评论 651 浏览 评分:2.0
你的开发任务 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,j1,j2,k,n,t,p,m,l[1000]; char …… 题解列表 2018年05月13日 0 点赞 0 评论 1248 浏览 评分:0.0
蓝桥杯算法训练VIP-整除问题 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 整除问题 { public static void main(String[] args) {…… 题解列表 2018年05月13日 0 点赞 0 评论 906 浏览 评分:9.9
程序员美工梦 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n[100],i,j,k; for(i=0;;i++) { sca…… 题解列表 2018年05月13日 0 点赞 0 评论 742 浏览 评分:0.0
三进制小数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; int mai…… 题解列表 2018年05月13日 0 点赞 0 评论 911 浏览 评分:9.9
三角形 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int n_max=100+5; int a[n_max][n_max]…… 题解列表 2018年05月13日 1 点赞 0 评论 930 浏览 评分:5.0
字符排列问题 (Java代码) 摘要:解题思路:全排列算法列出所有的可能,然后去检查无重复项有几个注意事项:参考代码:public class 字符串排列 { public static String [] str = new Str…… 题解列表 2018年05月13日 0 点赞 0 评论 1037 浏览 评分:0.0
C语言训练-自由落体问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class z1145 { public static void main(String args[]) { Sca…… 题解列表 2018年05月12日 1 点赞 1 评论 414 浏览 评分:4.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct _student{ char id[100]; …… 题解列表 2018年05月12日 0 点赞 0 评论 716 浏览 评分:0.0