Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
animal
//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) { //Your code goes here // my fav animal is a string favAnimal = "cat"; // his age is int catAge = 6; //his name is string catName = "Alex"; Console.WriteLine("his name is: " + catName); Console.WriteLine("he is " + catName + " years old."); // he has 4 legs and 2 wings :)) int numberOfLegs = 4; int numberOfWings = 2; Console.WriteLine("he has " + numberOfLegs + " legs and " + numberOfWings + " wings."); // he weighs 10kg and 23lb int weightsInKg = 10; int weightsInLb = 23; // hís fur is yellow, and it's soft. string catFur = "yellow"; } } }
run
|
edit
|
history
|
help
0
Swedish regex test
Roman Numbers, Sorting through IComparer
Math 9.61
count the occurrence of each distinct item in the array - Seeni
Operators
Fibonacci Series
for (int i= 2 ; i==5 ; i++)
MockTest
Project Euler Problem 4
Sort the chars through LINQ