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許可獲得許可的。執照


