题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035
//C++代码
#include<iostream>
using namespace std;
int main(){
int a,b;
while(cin>>a>>b,a||b){
int ans=1,i;
for(i=0;i<b;i++) ans=(ans*a)%1000;
cout<<ans<<endl;
}
return 0;
}
本文提供了一个针对HDU在线评测系统中编号为2035的问题的C++解决方案。该程序通过循环计算a的b次方模1000的结果,并在每次计算后输出。代码使用了标准输入输出流并遵循了常见的ACM竞赛格式。
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035
//C++代码
#include<iostream>
using namespace std;
int main(){
int a,b;
while(cin>>a>>b,a||b){
int ans=1,i;
for(i=0;i<b;i++) ans=(ans*a)%1000;
cout<<ans<<endl;
}
return 0;
}
1793
509

被折叠的 条评论
为什么被折叠?