这道题能有多难??? 摘要:解题思路:注意事项:参考代码: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 评论 220 浏览 评分: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 评论 561 浏览 评分: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 评论 242 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写-python 摘要:解题思路:.................直接利用upper()函数注意事项:参考代码:s=input()t=s.upper()print(t)…… 题解列表 2021年08月22日 0 点赞 0 评论 858 浏览 评分:8.0
STL函数翻转 摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){ vector<int> a…… 题解列表 2021年08月21日 0 点赞 0 评论 338 浏览 评分:9.9
1040: [编程入门]实数的打印 AC代码 摘要:```cpp #include using namespace std; int main() { cout n; cout …… 题解列表 2021年08月21日 0 点赞 0 评论 741 浏览 评分:9.9
首字母大写(Java代码) 摘要:```java package datastrutures; import java.util.Scanner; /* * 题目 1727: 首字母大写 */ public cla…… 题解列表 2021年08月21日 0 点赞 0 评论 388 浏览 评分:6.0
python快速解决该问题(Python) 摘要:解题思路:整除100得到前两位数;100取余得到后两位数,再进行循环。注意事项:参考代码:n=1000while n<10000: a=n//100 b=n%100 if n==(a…… 题解列表 2021年08月21日 0 点赞 0 评论 318 浏览 评分:9.9
两种方法(C++) 摘要:解题思路:注意事项:参考代码:1.#include<iostream> #include <algorithm> #include <string> using namespace std;…… 题解列表 2021年08月21日 0 点赞 0 评论 178 浏览 评分:0.0
这不更简单粗暴吗 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){char a[4];scanf("%s",a);printf("%c ",a[0]);printf("%c ",a…… 题解列表 2021年08月21日 0 点赞 0 评论 230 浏览 评分:2.0