Advertisement
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 _2016._04April._24_03.Операции_между_числа
- {
- class Program
- {
- static void Main(string[] args)
- {
- //Console.Write("Въведи цяло число (от 0 до 40000) Num1: ");
- int num1 = int.Parse(Console.ReadLine());
- //Console.Write("Въведи второ цяло число(от 0 до 40000) Num2: ");
- int num2 = int.Parse(Console.ReadLine());
- //Console.Write("Въведи символ за математическа операция (+, -, *, /, %): ");
- string mathOperation = Console.ReadLine();
- //if ((num1 < 0 || num1 > 40000) || (num2 < 0 || num2 > 40000))
- // {
- // Console.WriteLine("Invalid number");
- // }
- // else
- //{
- var sum = (num1 + num2);
- var subtraction = (num1 - num2);
- var multiply = (num1 * num2);
- var overage = num1 % ((double)num2);
- if (mathOperation == "+")
- {
- if (sum % 2 == 0)
- {
- Console.WriteLine($"{num1} + {num2} = {sum} - even");
- }
- else
- {
- Console.WriteLine($"{num1} + {num2} = {sum} - odd");
- }
- }
- if (mathOperation == "-")
- {
- if (subtraction % 2 == 0)
- {
- Console.WriteLine($"{num1} - {num2} = {subtraction} - even");
- }
- else
- {
- Console.WriteLine($"{num1} - {num2} = {subtraction} - odd");
- }
- }
- if (mathOperation == "*")
- {
- if (multiply % 2 == 0)
- {
- Console.WriteLine($"{num1} * {num2} = {multiply} - even");
- }
- else
- {
- Console.WriteLine($"{num1} * {num2} = {multiply} - odd");
- }
- }
- if (mathOperation == "%" || mathOperation == "/")
- {
- if (num2 == 0)
- {
- Console.WriteLine($"Cannot divide {num1} by zero");
- }
- else if (mathOperation == "%")
- {
- Console.WriteLine($"{num1} % {num2} = {overage}");
- }
- else if (mathOperation == "/")
- {
- var div = num1 / ((double)num2);
- Console.WriteLine($"{num1} / {num2} = {div:f2}");
- }
- }
- //}
- }
- }
- }
- За да мине на 100% Judge системата на SoftUni съм поставил в коментар нещата, които не се изискват по условие. Кода работи и с тях, системата не ги отчита като верни резултати.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement