mini_spreadsheet
1.0.0
Windows表单应用程序C#
这是在Windows表单中创建的漂亮电子表格,可以帮助您使用单元格和值进行基本操作。

git clone https://github.com/pashokred/mini_spreadsheet.git并用.NET Core 3.1和Windows表单支持在IDE中打开它
这个项目可以执行的所有铃铛和哨声:
主要功能是轻松计算具有双值和单元初始化器的表达式
在此形式中,您可以使用下一个操作:
* Arithmetic operations
+, -, *, / (binar operations)
^ (put number in the power)
mod (modulo operation or operation %) - returns the remainder or signed remainder of a division, after one number is divided by another)
div (integer division) - is division in which the fractional part (remainder) is discarded is called integer division and is sometimes denoted
* Logical operations:
=, <, >
<=, >=, <>
(returns '1' if true and '0' if false)
您还可以使用单元标识符进行操作:
按您自己的大小创建表,添加/删除最后一行和列
如果您真的得到了Randy,则甚至可以以.xlsx格式导出此表,也可以从带有lentions .xls,.xlsx,Excel Workbook,Excel Workbook 97-2003的文件中导入该表。
类型: Double|String
返回: Double
默认值: 0
A2 = 45 ; H4 = 7 ; F3 = 26 ; g3 = f3; B1 = 45 ; E5 = 16 ;
例子:
(( A 2 + 50 ) - H 4 * 10 ) mod F 3 + G 3 div B 1 > (E 5 / 3 )^ 4 # Prints 0 类型: Double|String
返回: Double
默认值: 0
A2 = 45 ; F3 = 26 ; B1 = 45 ; E5 = 16 ;
例子:
(A2+45) / F3 mod E5 - 50 mod B1 # Prints -1.5384... 如果您想做出贡献,请提供存储库并使用功能分支。拉力请求非常欢迎!
该项目中的代码已根据MIT许可获得许可。执照


