求对角线和的方法(python) 摘要:解题思路:注意事项:解答错误83,可能输出格式存在问题,本地编译已通过,求大神改正!!!参考代码:N=int(input())if N<=10: arr=[[0 for i in range(N…… 题解列表 2021年08月17日 0 点赞 0 评论 459 浏览 评分:6.0
Java代码实现基数排序 摘要:```java package datastrutures; import java.util.Scanner; public class P_1720 { public sta…… 题解列表 2021年08月18日 0 点赞 1 评论 297 浏览 评分:6.0
首字母大写(Java代码) 摘要:```java package datastrutures; import java.util.Scanner; /* * 题目 1727: 首字母大写 */ public cla…… 题解列表 2021年08月21日 0 点赞 0 评论 496 浏览 评分:6.0
高端的食材只需要简单的烹饪.(狗头) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b, c, d; cin >> a >> b >> c …… 题解列表 2021年08月22日 0 点赞 0 评论 415 浏览 评分:6.0
#include<stdio.h> int main(){ int i=0,x=0,a[5],b; while(b!=10) { scanf("%c",&am 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,x=0,a[5],b; while(b!=10) { scanf("%c",&b); a[i…… 题解列表 2021年08月24日 0 点赞 1 评论 563 浏览 评分:6.0
[编程入门]成绩评定 摘要:解题思路:菜鸡解法,不如用swich来解。即swich(l/10)注意事项:参考代码:#include<stdio.h> int main() { int l; scanf("…… 题解列表 2021年08月27日 0 点赞 0 评论 314 浏览 评分:6.0
C语言训练-"水仙花数"问题2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b,c,i; for (i = 100; i <= 999; i++) { a = i % 10…… 题解列表 2021年08月31日 0 点赞 0 评论 849 浏览 评分:6.0
第一个Hello World程序(会说明你们可能错误的原因) 摘要:解题思路:不难,按要求输出“*”和“Hello World!”即可。注意事项:错误原因:①“*”的个数为26个,我特意数过。②我第一次的代码是: …… 题解列表 2021年09月01日 0 点赞 2 评论 1118 浏览 评分:6.0
[编程入门]利润计算(C语言) 摘要:解题思路:就是用很正常的if语句就行了注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>0&&x<=10…… 题解列表 2021年09月06日 0 点赞 0 评论 497 浏览 评分:6.0
10进制转8进制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int d; scanf("%d\n",&d); //输入整数,取地址 d; if(d>0…… 题解列表 2021年09月11日 0 点赞 0 评论 563 浏览 评分:6.0