Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int a = 18; String s; s = "a is ";
...
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int a = 18; String s; s = "a is ";
...
-
1 2 3 4 5 6 7 8 9
using System; class a { public static void Main() { string s = "700"; double d = double.Parse(s); d = d/ 100; s = d.ToString("0.00");
...
-
1 2 3 4 5 6 7 8 9
class a { public static void Main() { string s = "700"; double d = double.Parse(s); d = d/ 100; s = d.ToString("0.00"); Console.WriteLine(s);
-
1 2 3 4 5 6 7 8 9
class a { public static void Main() { string s = "700"; double d = double.parse(s); d = d/ 100; s = d.ToString("0.00"); Console.WriteLine(s);
-
1 2 3 4 5 6 7 8 9
class a { public static void Main() { string s = "700"; double d = Double.parse(s); d = d/ 100; s = d.ToString("0.00"); Console.WriteLine(s);
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { n--; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8 9
using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { List<int> input = new List<int>(){1,2,3,4,5,6,7,8};
...
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { string n; while ((n = Console.ReadLine())!= "q") Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8 9
using System; using System.Linq; public class Test { public static void Main() { int[] msv = { -1, 2, 3, -4 }; var res = from n in msv
...
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { for(int i = 0; i < 3; i++) Console.WriteLine(Console.ReadLine()); } }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { for(int i = 0; i < 3; i++) Console.WriteLine(Console.ReadLine()); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine(Console.ReadLine()); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine(Console.ReadLine()); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine(Console.ReadLine()); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine("Hello World"); } }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; Console.WriteLine(''); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine("Schiesse"); } }
-
1 2 3 4 5 6 7 8
using System; public class Test { public static void Main() { Console.WriteLine(^"Schiesse"); } }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1 2 3 4 5 6 7 8
private void OutputColor(Bitmap bm) { r = new Rectangle(1150, 410, 320, 316); bd = bm.LockBits(r, ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); // Get address of first line IntPtr ptr = bd.Scan0;
...
-
1
namespace HelloWorld
-
1 2 3 4 5 6 7 8
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.Windows.Forms; using System.Drawing.Imaging; using System.Runtime.InteropServices;
...
-
1 2 3 4 5 6 7 8 9
// label1は、ドラッグ&ドロップを受けるコントロール( WPFに対応できるかは不明 ) label1.DragEnter += ( sender , e ) => { // 利用可能なフォーマットは、e.Data.GetFormats()で配列で取得可。 // データ形式は、MemoryStreamだったりstringだったり。 // IE・Chrome・Firefoxで可。URLだけでなく、ドラッグ&ドロップされたテキストも取得できる。 if( e.Data.GetDataPresent( "UnicodeText" ) ) { var temp = e.Data.GetData( "UnicodeText" ) as string; label1.Text = temp; Console.WriteLine( temp );
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PascalsTriangle { class Program {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PascalsTriangle { class Program {
...
-
1 2 3 4 5 6 7 8 9
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PascalsTriangle { class Program {
...


