Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Dotnet Q-3
// WAP to show the use of operators(Airthmetic & Logical) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int result; int x = 10, y = 5; // Addition result = (x + y); Console.WriteLine("Addition Operator: " + result); // Subtraction result = (x - y); Console.WriteLine("Subtraction Operator: " + result); // Multiplication result = (x * y); Console.WriteLine("Multiplication Operator: "+ result); // Division result = (x / y); Console.WriteLine("Division Operator: " + result); // Modulo result = (x % y); Console.WriteLine("Modulo Operator: " + result); } } }
run
|
edit
|
history
|
help
0
Selected Poetry of Rumi doy/poem#
partial method
problem
newMultQ working on more2
t
Ortalama Hesaplayici
Linked List with basic functions.
page 2
prime numbers 1-100
factorial ncr + unique list