Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //הגרל מספר רונדומלי תלת ספרות והדפס את סכום ספרתו
- //Random rnd = new Random();
- //int myRandomNum = rnd.Next(100, 1000);
- //int L = myRandomNum / 100;
- //int M = myRandomNum / 10 % 10;
- //int R = myRandomNum % 10;
- //int sum = L + M + R;
- //Console.WriteLine("The random number is: "+myRandomNum + " the sum of the 3 digits is: " + sum);
- /*-------------------------------------------------------------------------------------------*/
- //קלוט מהמשתמש מספר חד ספרתי והגרל מספר רונדמלי חד ספרתי והדפס את הפלט הבא
- // user number = _____
- // computer number = ______
- // ההפרש בן המספר שהמחשב הגרל לזה שהמשתמש הגרל difference = _________
- // המנה בן המספר שהמחשב הגרל לזה שמשתמש הרגל division = ___ / ____
- //Console.WriteLine("enter number with 1 digit");
- //int userNumber = int.Parse(Console.ReadLine());
- //Console.WriteLine("User number is: " + userNumber);
- //Random rnd = new Random();
- //float randomNum = rnd.Next(1, 10);
- //Console.WriteLine("randomaly number is: " + randomNum);
- //Console.WriteLine("the diffrent between the user and random number is: " + (randomNum - userNumber));
- //Console.WriteLine("the division random number with user number is: " + randomNum/userNumber);
- /*-----------------------------------------------------------------------------------------*/
- // הגרל מספר רנדומאלי בעל 4 ספרות והדפס את סכום סיפרת האחדות שלו עם סכום סיפרת האלפים שלו
- Console.WriteLine("Enter a number with 4 digits");
- int num = int.Parse(Console.ReadLine());
- int R = num % 10;
- int L = num / 1000;
- Console.WriteLine("the sum of the Right and Left number is: " + (R + L));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement