Skip to content

Instantly share code, notes, and snippets.

@NHOrus
Created September 30, 2014 13:38
Show Gist options
  • Save NHOrus/867b2d4d6ee7eeea3eba to your computer and use it in GitHub Desktop.
Save NHOrus/867b2d4d6ee7eeea3eba to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
#define 前 for
#define 整数 int
#define ダブル double
#define 虚しい void
#define 刷るフ printf
#define サイン sin
#define フフラッシュ fflush
虚しい それをやる()
{
前(整数 私 = 0; 私 < 100; ++私)
{
ダブル x = 2 * 3.1415926 * ダブル(私)/100;
刷るフ("\n%g;%g", x, サイン(x));
}
フフラッシュ(stdout);
}
整数 _tmain(整数argc, _TCHAR* argv[])
{
それをやる();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment