题解列表
1118: Tom数,简洁易懂
摘要:##1118: Tom数,简洁易懂
```cpp
#include
using namespace std;
int main(){
long long a;//注意,这里要用long l……
奖学金(利用结构体和sort)
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <algorithm>//利用sort排序
using namespace std;
struct St……
[python] 1001: [编程入门]第一个HelloWorld程序
摘要:方法一:
print("**************************")
print("Hello World!")
print("**********************……
1002: [编程入门]三个数最大值 (python代码)
摘要:方法一
a, b, c = map(int, input().strip().split())
sum=[a, b, c]
sum.sort()
print(sum[2])
……
自定义函数之字符类型统计
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void tongji(char str[100],int out[4]){ int i; ……
药房管理1+1=33333333333
摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n,q,b=0; cin>>m>……
感谢支持,谢谢你们的支持
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,x,y,z=0,maxx=0; ci……
完数的判断-解题(C语言代码)
摘要:解题思路:首先我们需要知道什么是完数?完数是指一个数的所有真因子之和等于该数本身,例如6是一个完数,因为6的真因子有1、2、3,而1+2+3=6。然后我们需要考虑的是一个数的真因子怎么求?我的思路是将……