乘方计算

GESP二级练习,数学函数应用,难度★✮☆☆☆。

luogu-B2062 乘方计算

题目要求

题目描述

给出一个整数 aa 和一个正整数 nn,求乘方 ana^n

输入格式

一行,包含两个整数 aann1000000a1000000-1000000 \le a \le 10000001n100001 \le n \le 10000

输出格式

一个整数,即乘方结果。题目保证最终结果的绝对值不超过 10000001000000

样例输入 #1

2 3

样例输出 #1

8

题目分析

本地直接用数学函数中的pow函数计算即可。

{% include custom/custom-post-content-inner.html %}

示例代码

#include <cmath>
#include <iostream>
using namespace std;
int main() {
    int a, b; // 定义变量a和b
    cin >> a >> b; // 读取输入的a和b
    cout << pow(a, b); // 输出a的b次方
    return 0;
}

{% include custom/custom-post-content-footer.md %}

所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code

luogu-”系列题目可在 洛谷题库 在线评测。

bcqm-”系列题目可在 编程启蒙题库 在线评测。

GESP/CSP 认证学习微信公众号
GESP/CSP 认证学习微信公众号
Last updated on