Minesweeper-题解(C语言)白话文,简单易上手! 摘要:```c #include int main() { int n,m,k; k=1; //Field #x计数…… 题解列表 2021年08月22日 0 点赞 0 评论 659 浏览 评分:9.9
编辑距离-C++代码 摘要: #include #include using namespace std; int main() { string a,b; …… 题解列表 2021年08月22日 0 点赞 0 评论 407 浏览 评分: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 评论 213 浏览 评分: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 评论 553 浏览 评分: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 评论 229 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写-python 摘要:解题思路:.................直接利用upper()函数注意事项:参考代码:s=input()t=s.upper()print(t)…… 题解列表 2021年08月22日 0 点赞 0 评论 844 浏览 评分:8.0
STL函数翻转 摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){ vector<int> a…… 题解列表 2021年08月21日 0 点赞 0 评论 320 浏览 评分:9.9
1040: [编程入门]实数的打印 AC代码 摘要:```cpp #include using namespace std; int main() { cout n; cout …… 题解列表 2021年08月21日 0 点赞 0 评论 710 浏览 评分:9.9
首字母大写(Java代码) 摘要:```java package datastrutures; import java.util.Scanner; /* * 题目 1727: 首字母大写 */ public cla…… 题解列表 2021年08月21日 0 点赞 0 评论 378 浏览 评分:6.0
python快速解决该问题(Python) 摘要:解题思路:整除100得到前两位数;100取余得到后两位数,再进行循环。注意事项:参考代码:n=1000while n<10000: a=n//100 b=n%100 if n==(a…… 题解列表 2021年08月21日 0 点赞 0 评论 304 浏览 评分:9.9