Skip to content

Instantly share code, notes, and snippets.

@aoisensi
Created July 11, 2014 16:12
Show Gist options
  • Save aoisensi/48b03717e88ac2bc1c34 to your computer and use it in GitHub Desktop.
Save aoisensi/48b03717e88ac2bc1c34 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace test01
{
class Program
{
public static int ItiHuyasu(int n)
{
return n + 1;
}
static void Main(string[] args)
{
Console.WriteLine(ItiHuyasu(6));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment