📜  p5.js | sqrt()函数

📅  最后修改于: 2022-05-13 01:56:23.830000             🧑  作者: Mango

p5.js | sqrt()函数

p5.js 中的sqrt()函数用于获取任何输入数字的平方根。

句法:

sqrt(n)

参数:此函数接受单个参数n ,它是一个输入的非负数,其平方根正在计算中。

返回值:它返回任何输入数字的平方根。

下面的程序说明了 p5.js 中的 sqrt()函数:

示例:此示例使用 sqrt()函数来获取输入数字的平方根。

function setup() { 
   
    // Create Canvas of size 270*80 
    createCanvas(350, 80); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
       
    // Initialize the parameter 
    let a = 25; 
    let b = 16; 
       
    // Call to sqrt() function 
    let x = sqrt(a);
    let y = sqrt(b); 
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
       
    // Getting output
    text("Square root of 25 is: " + x, 50, 30);
    text("Square root of 16 is: " + y, 50, 50); 
} 

输出:

参考: https://p5js.org/reference/#/p5/sqrt