2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; cin>>k; long lo…… 题解列表 2024年01月10日 0 点赞 0 评论 127 浏览 评分:0.0
题解 2805: 乘方计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; int sum=1; …… 题解列表 2024年01月10日 0 点赞 0 评论 197 浏览 评分:9.9
题解 2805: 乘方计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; cin>>a>>n; …… 题解列表 2024年01月10日 0 点赞 0 评论 149 浏览 评分:2.0
2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; …… 题解列表 2024年01月10日 0 点赞 0 评论 181 浏览 评分:0.0
2805: 乘方计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; int mer=1; …… 题解列表 2024年01月10日 0 点赞 0 评论 170 浏览 评分:0.0
题解 2805: 乘方计算 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){long long a,n,sum=1;cin>>a>>n;for(i…… 题解列表 2024年01月10日 0 点赞 0 评论 268 浏览 评分:9.9
题解 2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; …… 题解列表 2024年01月10日 1 点赞 0 评论 313 浏览 评分:9.9
[编程入门]三个数最大值 摘要:解题思路:使用qsort函数注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int cmp(const void*a,const void*b){ re…… 题解列表 2024年01月10日 0 点赞 0 评论 198 浏览 评分:0.0
简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,g,s,b; scanf("%d",&i); b=i/100%10; s=i…… 题解列表 2024年01月10日 0 点赞 0 评论 221 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:解题思路:除法注意事项:参考代码:n = int(input())h = n // 3600m = n % 3600 // 60s = n % 3600 % 60print(f"{h}:{m}:{s}…… 题解列表 2024年01月10日 0 点赞 0 评论 205 浏览 评分:0.0