נוסחה לחישוב מידות C#
-
שלום!
אני צריך נוסחה לחישוב מידות תלמודיות לדוג' כאסקלב יגודו
עשיתי חישוב של ביצה:public Form1() { InitializeComponent(); comboBox1.SelectedIndexChanged += Calculate; numericUpDown1.ValueChanged += Calculate; } string[] types = { "ביצה", "לוג", "קב", "סאה", "איפה", "כור" }; int[] quantity = { 1, 6, 4, 6, 3, 10 }; private void Calculate(object sender, EventArgs e) { string str = label1.Text = ""; double num = 1; switch (comboBox1.SelectedIndex) { case 0: for (int i = 0; i < 6; i++) { num *= quantity[i]; str += $"{types[i]}: {decimal.ToDouble(numericUpDown1.Value) / num}\n"; } break; } label1.Text = str; }
אבל צריך שיהיה אפשר לחשב גם לוג וקב וכו'
ואני רוצה עזרה בבניית נוסחה שתתאים לכל המידות
תודה! -
@יוסף-בן-שמעון אשריך! עוזר לי מאד!