Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
test 1
//Rextester.Program.Main is the entry point for your code. Don't change it. //Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { /*public static void Main(string[] args) { string name = "Tom"; int age = 34; double height = 1.7; //Console.WriteLine($"Имя: {name}\nВозраст: {age}\nРост: {height}м"); Console.WriteLine("Имя: {0}\nВозраст: {1}\nРост: {2}м", name, age, height); }*/ /* public static void Main(string[] args) { int x1 = 2; int x2 = 5; Console.WriteLine(x1 & x2); int y1 = 4; int y2 = 5; Console.WriteLine(y1 & y2); }*/ /*public static void Main(string[] args) { int x3 = 45; //0101101 int key = 102; //1100110 int encrypt = x3 ^ key; //1001011 Console.WriteLine(encrypt); int decrypt = encrypt ^ key; Console.WriteLine(decrypt); int x = 9; //1001 Console.WriteLine(~x); //инвертирование Console.WriteLine(Convert.ToString(-10,2)); int y = 4; //100 Console.WriteLine(y<<1); //сдвиг влево Console.WriteLine(y<<2); //сдвиг влево Console.WriteLine(y>>1); //сдвиг влево //Console.ReadKey(); }*/ public static void Main(string[] args){ int a, b, c; a = b = c = 34; } } }
run
|
edit
|
history
|
help
0
ProWIN2
Beadando Simon Szabolcs 10/M
Braille ASCII -> ASCII
Sort example
Decimal separator diff
axasxasd
Passing Multidimensional Arrays As Arguments
SQL import
Reverse a String Using Hash Function
stackoverflow_25444818