2805: 乘方计算 摘要:解题思路:注意事项:因为是乘,所以“sum=1”,不是“sum=0”参考代码:#include <bits/stdc++.h>using namespace std;int main(){ in…… 题解列表 2024年06月30日 0 点赞 0 评论 68 浏览 评分:0.0
新手 乘方计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d",&a,&b); c=pow(a,b); …… 题解列表 2024年12月07日 0 点赞 0 评论 62 浏览 评分:0.0
乘方计算C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,a,n; scanf("%d %d",&a,&n); m=pow(a,n); …… 题解列表 2024年02月17日 0 点赞 0 评论 93 浏览 评分:0.0
超简单新手题解 摘要:解题思路:pow函数注意事项:参考代码:#i#include <stdio.h>int main() { int a,b,j; scanf("%d %d",&a,&b); j=pow(a,b); pr…… 题解列表 2024年11月07日 0 点赞 0 评论 61 浏览 评分:2.0
有错误请指出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,n; scanf("%d %d",&a,&n); int i=0,cheng=1; …… 题解列表 2022年12月20日 0 点赞 0 评论 470 浏览 评分:9.5
使用库函数math 摘要:解题思路:注意事项:pow函数只能支持float和double型参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b; int…… 题解列表 2023年04月17日 0 点赞 0 评论 356 浏览 评分:9.9
for循环c语言版 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n; int ax=1; scanf("%d %d",&a,&n); if(…… 题解列表 2023年11月04日 0 点赞 0 评论 237 浏览 评分:9.9
2805: 乘方计算(C语言之奇奇怪怪解法) 摘要: #include //power 函数使用递归方式计算乘方。如果指数 n 为 0,返回 1。如果指数 n 为偶数,递归计算 a^(n/2) 并返回结果的平方。如果指数 n 为奇数,递归计算 a…… 题解列表 2023年07月07日 0 点赞 1 评论 292 浏览 评分:9.9