1993: 荣耀(关键在于击杀零个人不显示0的情况) 摘要:解题思路:注意事项:击杀零个人不显示,注意最大是一千个人而非999参考代码:#include<stdio.h>int swip(int);int main(void){ int i; int N; i…… 题解列表 2022年07月19日 0 点赞 0 评论 81 浏览 评分:0.0
编写题解 1993: 荣耀 摘要:解题思路:注意事项:参考代码:dic={0:6,1:2,2:5,3:5,4:4,5:5,6:6,7:3,8:7,9:6} while True: try: n=int(i…… 题解列表 2022年04月02日 0 点赞 0 评论 179 浏览 评分:0.0
荣耀-题解(Java代码) 摘要:为什么答案错误46%, 哪位大佬可以告诉我一下嘛 ``````java import java.util.Scanner; public class Main { public sta…… 题解列表 2020年04月04日 0 点赞 0 评论 368 浏览 评分:0.0
荣耀-题解(C语言代码) 摘要: #include int main() { int a[10]={6,2,5,5,4,5,6,3,7,6},n,s,x,sum; while(sca…… 题解列表 2019年08月10日 0 点赞 0 评论 602 浏览 评分:6.0
荣耀-题解(C语言代码) 摘要:#### 解题思路: 对于每个由七段数码管构成的计数器,显示一个数字需要的电能,就是这个数字所需要数码管的段的个数,0需要6段、1需要2段、2需要5段、3需要5段、4需要4段、5需要5段、6需要6段…… 题解列表 2019年06月10日 2 点赞 0 评论 860 浏览 评分:9.9
荣耀 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main(){ int dis[10]={6,2,5,5,4,5,6…… 题解列表 2019年03月21日 0 点赞 0 评论 444 浏览 评分:0.0
C/C++ Vector动态数组 荣耀 (C/C++代码) 摘要:解题思路:定义一个vector向量容器来存储数据,相当于C语言中的动态数组。vector<int> vec;然后把数据存入vec容器中vec.push_back(data);然后复用switch开关语…… 题解列表 2019年01月03日 4 点赞 0 评论 574 浏览 评分:0.0
荣耀 (C++代码) 摘要:解题思路: 我是把0~9的晶体管数存到number的一维数组中 people数组是记录每组每个人分别的杀怪数量 题解列表 2018年12月30日 6 点赞 0 评论 649 浏览 评分:9.9
荣耀 (C++代码)map大法好 摘要:解题思路: 这题疯狂罚时..... 看到各位都喜欢用switch,顺手搞了一发map,STL中的map作为一种映射关系,对于本体可以说是相当好用的,只需要把每一个数组对于的几节灯给写进去,…… 题解列表 2018年12月30日 0 点赞 0 评论 483 浏览 评分:9.9
荣耀 (C语言代码)(emm,不知道哪里错了) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int ws(int n){ int num=0; if(n==0) num=1; else{ while(n>0) { n/=10;…… 题解列表 2018年12月29日 1 点赞 0 评论 903 浏览 评分:0.0