题解列表
感谢支持,谢谢你们的支持
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,one=0,five=0,ten=0……
感谢支持,谢谢你们的支持
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n ; cin>>a>>n; ……
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; ……