程序员的表白 (C语言代码) 摘要:#include "stdafx.h" //答案不通过????void fun(int n){ char a[200][200] = { 0 }; int i, …… 题解列表 2018年10月26日 0 点赞 1 评论 4372 浏览 评分:6.8
【绝对值排序】 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #includ…… 题解列表 2018年10月26日 0 点赞 0 评论 646 浏览 评分:0.0
GC的苦恼 (C语言代码) 摘要:#include "stdafx.h"void fun(int a){ if (a >= 90 && a <= 100) printf("A\n"); else if (a >= 75 && a <…… 题解列表 2018年10月26日 0 点赞 0 评论 757 浏览 评分:0.0
陈教主的三角形 (C语言代码) 摘要:#include "stdafx.h"int triangle(int a, int b, int c){ if ((a + b > c) && (a + c) > b && (b + c) …… 题解列表 2018年10月26日 0 点赞 1 评论 320 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:#include<bits/stdc++.h>using namespace std;char a[1000];char b[1000];int ans[10000];void f(char *s,i…… 题解列表 2018年10月26日 1 点赞 0 评论 821 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:#include<bits/stdc++.h> using namespace std; char a[1000]; char b[1000]; int ans[10000]; void f…… 题解列表 2018年10月26日 1 点赞 0 评论 756 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题6.10 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年10月26日 1 点赞 0 评论 544 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年10月26日 0 点赞 0 评论 964 浏览 评分:0.0
简单编码 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <…… 题解列表 2018年10月26日 0 点赞 0 评论 914 浏览 评分:0.0
蓝桥杯2013年第四届真题-打印十字图 (C++代码) 摘要:解题思路:比较noob的方法,先打表每一个十字,每个十字分6段。再用一个函数调用打表单个十字的函数,把层数和偏移传进去注意事项:注意偏移都要加上数组要开够大,测试样例应该都是比较大的参考代码:#def…… 题解列表 2018年10月26日 0 点赞 0 评论 700 浏览 评分:0.0