代码拉取完成,页面将自动刷新
/***************************************************************
*Copyright(c) 2020思特诺(Stduino)All right reserved.
*
*This library is open source and free for individual users.
*
*For commercial use, please contact service001@stduino.com.
***************************************************************/
#include "StduinoMath.h"
long long _pow(unsigned int x,unsigned int y)
{
long long Tx=0;
for(unsigned int i=0;i<y;i++)
{
(Tx==0)?(Tx=(Tx+1)*x):(Tx=Tx*x);
}
return (x==0)?0:((Tx==0)?1:Tx);
}
long map(long x,long in_min,long in_max,long out_min,long out_max)
{
return (((x)-(in_min))*((out_max)-(out_min))/((in_max)-(in_min))+(out_min));
}
// long random(long x)
// {
// return ;
// }
// long random(long x, long x)
// {
// return ;
// }
// void randomSeed(unsigned long x)
// {
// ;
// }
// unsigned int makeWord(unsigned int w)
// {
// return ;
// }
// unsigned int makeWord(unsigned char h, unsigned char l)
// {
// return ;
// }
/***************************************************************
*Copyright(c) 2020思特诺(Stduino)All right reserved.
*
*This library is open source and free for individual users.
*
*For commercial use, please contact service001@stduino.com.
***************************************************************/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。