一本通1084;幂的末尾

上代码!

#include 
using namespace std;
int main()
{
    int a, b, power = 1, i;
    cin >> a >>b;
    for (i = 1; i <= b; i++)
    {
        power *= a;
        power %= 1000;
    }
    if (power < 10) cout << "00";
    else if (power < 100) cout << 0;
    cout << power;
    return 0;
}

你可能感兴趣的:(c++,算法,数据结构)