题解列表
模拟计算器(C语言)
摘要:#include<stdio.h>
int main(){
int a,b;
double sum;
char c;
scanf("%d%d",&a,&b);
getc……
题目 1303: 统计数字题解
摘要:参考代码:#include<iostream>
#include<algorithm>
using namespace std;
int a[500001],n,ans=1;
int main……
[STL训练]sort练习
摘要:# STL sort
## 头文件
```c++
#include
```
# 完整代码
```c++
#include
#include
#include
int mai……
C语言训练-排序问题<1>
摘要:#include<stdio.h>
int main(){
int arr[4];
for(int i=0;i<4;i++){
scanf("%d",&arr[i]);……
编写题解 1169: 绝对值排序
摘要:#include<stdio.h>
#include<math.h>
int main(){
int n = 1;
while(scanf("%d",&n)){
……
玉龙学长买雪糕C++实现
摘要:## 迭代
```c++
#include
using namespace std;
int fib(int n){
int s = 0, res = 1;
while……