Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp2
- {
- class Program
- {
- static void Main(string[] args)
- {
- // כתוב תוכנית הקולטת שני גבהים של סירים בעלי רדיוס של 10 ס''ם התוכנית מחשבת את נפח הסירים ע''פ הנוסחה ונותנת הודעה מתאימה עבור כל סיר
- //const string INPUT_MESSAGE = "Enter the ";
- //const string OUTPUT_MESSAGE = "the volume of the {0}is: \t {1} ";
- //const double PI = 3.14;
- //const double R = 10;
- //Console.WriteLine(INPUT_MESSAGE + "first high");
- //double userNumber1 = double.Parse(Console.ReadLine());
- //Console.Write(PI + "*" + R + "*" + R + "*" + userNumber1 + " = " + OUTPUT_MESSAGE, "first high ", (PI * R * R * userNumber1));
- //Console.WriteLine("");
- //Console.WriteLine(INPUT_MESSAGE + "second high");
- //double userNumber2 = double.Parse(Console.ReadLine());
- //Console.Write(PI + "*" + R + "*" + R + "*" + userNumber2 + "= " + OUTPUT_MESSAGE, "second high ",(PI * R * R * userNumber2));
- //Console.WriteLine("");
- //--------------------------------------------------------------------------------------
- //קלוט מהמשתמש מספר דו ספרתי והדפס את סכום ספרותיו
- //Console.WriteLine("enter number with to digits");
- //int num = int.Parse(Console.ReadLine());
- //int R = num % 10 ;
- //int L = (int)num / 10;
- //Console.WriteLine("The Sum of the two digits is:"+(R + L));
- //----------------------------------------------------------------------------------------
- //הגרל מספר רונדומלי תלת סרות והדפס את סכום ספרתו
- Random rnd = new Random();
- Console.Write
- //קלוט מהמשתמש מספר חד ספרתי והגרל מספר רונדמלי חד ספרתי והדפס את הכפל הבא
- // user number = _____
- // computer number = ______
- // ההפרש בן המספר שהמחשב הגרל לזה שהמשתמש הגרל difference = _________
- // המנה בן המספר שהמחשב הגרל לזה שמשתמש הרגל division = ___ / ____
- }
- }
- }
Add Comment
Please, Sign In to add comment