题解列表
[编程入门]三个数最大值
摘要:解题思路:使用qsort函数注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int cmp(const void*a,const void*b){ re……
题解 2806: 人口增长问题
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; ……
题解 2805: 乘方计算
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){long long a,n,sum=1;cin>>a>>n;for(i……
2805: 乘方计算
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; int mer=1; ……
2806: 人口增长问题
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; ……
题解 2805: 乘方计算
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; cin>>a>>n; ……
题解 2805: 乘方计算
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; int sum=1; ……
2803: 整数的个数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; cin>>k; long lo……
题解 2803: 整数的个数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; long long sum=0,……