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を入手した場合は、extions .xls、.xlsx、Excel Workbook、Excel Workbook 97-2003を使用してファイルからテーブルに.xlsx形式でこのテーブルをエクスポートすることもできます。
タイプ: 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ライセンスに基づいてライセンスされています。ライセンス


