水仙花数判断-题解(python代码) 摘要:参考代码:for i in range(100,1000): #遍历所有三位数 &nb 题解列表 2021年10月15日 0 点赞 0 评论 600 浏览 评分:8.3
Java实现(简单易懂,逆推公式) 摘要:package com.edu.hhxy;import java.util.Scanner;/** * @author five-five * @link https://www.dotcpp.com…… 题解列表 2021年10月15日 0 点赞 0 评论 454 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct student{ char id[10]; char name[20]; int …… 题解列表 2021年10月15日 0 点赞 0 评论 465 浏览 评分:0.0
1097: 蛇行矩阵 摘要:解题思路:先寻找每一行的规律,然后暴力输出注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n][n]…… 题解列表 2021年10月15日 0 点赞 0 评论 263 浏览 评分:0.0
编写题解 2629: 数学题(快速幂解法) 摘要:typedef long long ll; #include <iostream> using namespace std; ll fast_pwoer(ll base,ll index,ll …… 题解列表 2021年10月15日 0 点赞 0 评论 740 浏览 评分:9.9
堆栈的使用sgdfhjas 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "stdlib.h"#define MaxSize 100typedef int ElemType;typedef …… 题解列表 2021年10月15日 0 点赞 0 评论 293 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数--小白的题解(C语言代码) 摘要:解题思路:纯小白,入坑几个星期(有错误请谅解) 一个非常简单容易理解的方法.先接受两个数(当然是废话)然后判断接受的两个数大小关系为什么要判断?因为最大公约数小于大的那个数以此来限制接下来for循环的…… 题解列表 2021年10月14日 0 点赞 0 评论 378 浏览 评分:9.9
巧妙利用字符串乘法(python代码) 摘要:解题思路:不必先从数字类型的角度考虑,获取aaaaa利用字符串乘法获取,再将类型转换参考代码:a = eval(input()) s = 0 for i in range(a): s+=…… 题解列表 2021年10月14日 0 点赞 0 评论 348 浏览 评分:7.3
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:先把字符串输入数组,然后使用指针将其拆分到另一数组,然后使用循环将元音字母找出存入一个空数组。注意事项:注意多余空格参考代码:#include<stdio.h>int main(){ …… 题解列表 2021年10月14日 0 点赞 1 评论 472 浏览 评分:6.0
1044: [编程入门]三个字符串的排序-题解(python代码) 摘要:解题思路:注意事项:参考代码:l = []for i in range(3): l.append(input())l.sort()for i in l: print(i)…… 题解列表 2021年10月14日 0 点赞 0 评论 347 浏览 评分:0.0