#include <cmath>
#include <iostream>
using namespace std;
int main()
{
int x = 2;
int y = 3;
cout << "2*2*2 = " << pow(x,y) << endl;
return 0;
}

相关文章:

  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
  • 2021-10-06
  • 2021-09-26
  • 2021-12-27
  • 2021-12-27
猜你喜欢
  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2021-11-21
相关资源
相似解决方案