概述
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
int a,b;
long long c;
cout << "输入:";
cin >> a >> b;
c = (long long)pow(a,b) % 1000; //pow返回double!!!太精确了啊
//在强转面前,不堪一击
//printf("%03lld",c); //long long配合%lld
cout << c;
return 0;
}
//cout << "输入:";
结果:
最后
以上就是大意冬瓜为你收集整理的第一节 练习26结果:的全部内容,希望文章能够帮你解决第一节 练习26结果:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复