Created
September 30, 2014 13:38
-
-
Save NHOrus/867b2d4d6ee7eeea3eba to your computer and use it in GitHub Desktop.
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> | |
#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