This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#define v printf | |
#define ๏พ ; | |
void ๏ฝก๏ผฯ๏ผ๏ฝก | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using OpenCvSharp; | |
namespace OpenCvTest | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//ๅๆ่จญๅฎ | |
var capture = Cv.CreateCameraCapture(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Diagnostics; | |
using System.IO; | |
using OpenCvSharp; | |
using OpenCvSharp.CPlusPlus; | |
namespace CaptureTest | |
{ | |
class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
namespace ExperimentStap | |
{ | |
class Program | |
{ | |
static readonly string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYG"; | |
static void Main(string[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo ****************************************************************** | |
echo ใจใคใใใ ใใฉ่ณชๅใใใใ | |
echo ใ[yes]ใ[no]ใใชใฉใฎใใใซใ | |
echo ใใฎๅ ดใซๅใฃใ็ญใใใ่ใใฆๅ ฅๅใใๅพใใจใณใฟใผใญใผใๆผใใฆใญใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใ | |
echo ใใใใ่ณชๅใใใใใใใฉใ | |
echo ใชใใจใชใใง็ญใใฆใใฃใฆใญใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใใ | |
echo ใปใใฎใจใใใฏๅ จ้จใใจใณใฟใผใญใผใจใใๆผใใฐ้ฒใใใใซใชใฃใฆใใใ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using MySql.Data.MySqlClient; | |
using System; | |
using System.Data; | |
namespace ConnectMysqlSample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MathUtil | |
{ | |
/// <summary> | |
/// Wallis ใฎๅ ฌๅผ | |
/// </summary> | |
public class WallisFormula | |
{ | |
/// <summary> | |
/// ่จ็ฎใๅฎ่กใใ | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# count = ่จ็ฎๅๆฐ | |
# precision = ็ฒพๅบฆ | |
function y = wallis_formula(count,precision) | |
output_precision(precision) | |
i = 1 | |
a = 1 | |
while(i<=count) | |
num = 4*(i^2) | |
a = a * num/(num-1) | |
i++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace Util | |
{ | |
public class ChitokuChin | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
const int LENGTH = 200; | |
int char_count[LENGTH]; | |
void set_str(char *dst, int n){ | |
if (n == LENGTH){ | |
return; | |
} |
OlderNewer