bharath/git-from-scratch

此软件包的最新版本(dev-main)没有可用的许可信息。

dev-main 2022-01-24 14:07 UTC

This package is auto-updated.

Last update: 2024-09-24 19:44:26 UTC


README

由 Got Your Backs 提供

使用方法

php index.php <操作> <参数1> <参数2> <参数3> ...

指数

为了得到一个数的指数值,

Syntax: `php index.php exponent number number`
Example `php index.php exponent 2 3`
The above example will print `8`

除法

为了得到两个数的除法值,

Syntax: `php index.php Divide number number`
Example `php index.php Divide 8 2`
The above example will print `4`

乘法

为了得到两个数的乘法值,

Syntax: `php index.php Multiply number number`
Example `php index.php Multiply 8 2`
The above example will print `16`