amjadArabia

c# (Random, Parse)

Nov 15th, 2019
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.52 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp2
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             //  כתוב תוכנית הקולטת שני גבהים של סירים בעלי רדיוס של 10 ס''ם התוכנית מחשבת את נפח הסירים ע''פ הנוסחה ונותנת הודעה מתאימה עבור כל סיר
  14.  
  15.             //const string INPUT_MESSAGE = "Enter the ";
  16.             //const string OUTPUT_MESSAGE = "the volume of the {0}is: \t {1} ";
  17.             //const double PI = 3.14;
  18.             //const double  R = 10;
  19.  
  20.             //Console.WriteLine(INPUT_MESSAGE + "first high");
  21.             //double userNumber1 = double.Parse(Console.ReadLine());
  22.             //Console.Write(PI + "*" + R + "*" + R + "*" + userNumber1 + " = " + OUTPUT_MESSAGE, "first high ", (PI * R * R * userNumber1));
  23.  
  24.             //Console.WriteLine("");
  25.  
  26.             //Console.WriteLine(INPUT_MESSAGE + "second high");
  27.             //double userNumber2 = double.Parse(Console.ReadLine());
  28.             //Console.Write(PI + "*" + R + "*" + R + "*" + userNumber2 + "= " + OUTPUT_MESSAGE, "second high ",(PI * R * R * userNumber2));
  29.  
  30.             //Console.WriteLine("");
  31.  
  32.             //--------------------------------------------------------------------------------------
  33.             //קלוט מהמשתמש מספר דו ספרתי והדפס את סכום ספרותיו
  34.  
  35.             //Console.WriteLine("enter number with to digits");
  36.             //int num = int.Parse(Console.ReadLine());
  37.  
  38.             //int R = num % 10 ;
  39.             //int L = (int)num / 10;
  40.  
  41.  
  42.             //Console.WriteLine("The Sum of the two digits is:"+(R + L));
  43.  
  44.  
  45.             //----------------------------------------------------------------------------------------
  46.  
  47.  
  48.             //הגרל מספר רונדומלי תלת סרות והדפס את סכום ספרתו
  49.  
  50.             Random rnd = new Random();
  51.  
  52.             Console.Write
  53.  
  54.  
  55.             //קלוט מהמשתמש מספר חד ספרתי והגרל מספר רונדמלי חד ספרתי והדפס את הכפל הבא
  56.             // user number = _____
  57.             // computer number = ______
  58.             // ההפרש בן המספר שהמחשב הגרל לזה שהמשתמש הגרל difference = _________
  59.             //  המנה בן המספר שהמחשב הגרל לזה שמשתמש הרגל  division = ___ / ____
  60.  
  61.         }
  62.     }
  63. }
Add Comment
Please, Sign In to add comment