C语言 精简递归 【排队买票】 摘要:#include<stdio.h>int array(int, int, int);int array(int n, int k, int sum) //找出每一种排列方法{…… 题解列表 2021年08月22日 0 点赞 0 评论 491 浏览 评分:0.0
Minesweeper-题解(C语言)白话文,简单易上手! 摘要:```c #include int main() { int n,m,k; k=1; //Field #x计数…… 题解列表 2021年08月22日 0 点赞 0 评论 839 浏览 评分:9.9
编辑距离-C++代码 摘要: #include #include using namespace std; int main() { string a,b; …… 题解列表 2021年08月22日 0 点赞 0 评论 627 浏览 评分:9.9
这道题能有多难??? 摘要:解题思路:注意事项:参考代码:int main(){float i;scanf("%f",&i);printf("%6.2f\n",i);printf("%6.2f %6.2f\n",i,i);pri…… 题解列表 2021年08月22日 0 点赞 0 评论 436 浏览 评分:2.0
编写题解 1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码:m=list(map(int,input().split()))for i in range(len(m)): for j in range(i+1,len(m))…… 题解列表 2021年08月22日 0 点赞 1 评论 771 浏览 评分:9.9
编写题解 1481: 蓝桥杯算法提高VIP-剪刀石头布 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if (a==0 and b==2) or (a==1 and b==0) or (a==2 and b==1):…… 题解列表 2021年08月22日 0 点赞 0 评论 450 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写-python 摘要:解题思路:.................直接利用upper()函数注意事项:参考代码:s=input()t=s.upper()print(t)…… 题解列表 2021年08月22日 0 点赞 0 评论 1076 浏览 评分:8.0
STL函数翻转 摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){ vector<int> a…… 题解列表 2021年08月21日 0 点赞 0 评论 512 浏览 评分:9.9
1040: [编程入门]实数的打印 AC代码 摘要:```cpp #include using namespace std; int main() { cout n; cout …… 题解列表 2021年08月21日 0 点赞 0 评论 1118 浏览 评分:9.9
首字母大写(Java代码) 摘要:```java package datastrutures; import java.util.Scanner; /* * 题目 1727: 首字母大写 */ public cla…… 题解列表 2021年08月21日 0 点赞 0 评论 576 浏览 评分:6.0