现实月饼

文章
5
资源
0
加入时间
3年0月20天

VB教程

w3c网站参考

【C++常用函数】x的幂次方pow()

pow()函数原型:double pow(double a,double b);功能: 计算a的b次方#include <iostream>#include <math.h>//pow#include <typeinfo>//typeidusing namespace std;void main(){ int a,b; cin >> a >> b