-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cpp
More file actions
41 lines (39 loc) · 935 Bytes
/
Main.cpp
File metadata and controls
41 lines (39 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "Typedefine.h"
#include<stdio.h>
#include "Conversions.h"
#include "Tables.h"
#include<iostream>
#include<set>
#include<algorithm>
#include<stack>
#include<queue>
#include<vector>
#include<cmath>
#include<ctype.h>
#include<cstring>
#define LL unsigned long long
#define h1t35h using
#define rocks namespace
#define theworld std;
#define SI(n) scanf("%d",&n);
#define SF(n) scanf("%f",&n);
#define SLL(n) scanf("%lld",&n);
#define SC(n) scanf("%c",&n);
#define PC(n) printf("%c",&n);
#define PI(n) printf("%d",n);
#define PF(n) printf("%f",n);
#define PLL(n) printf("%lld",n);
#define FOR(n) for(LL x=0;x<n;x++)
#define FORL(a,b) for(LL x=a;x<b;x++)
#define MAX(a,b) ( ((a) > (b)) ? (a) : (b) )
#define MIN(a,b) ( ((a) < (b)) ? (a) : (b) )
h1t35h rocks theworld;
int main()
{
string nstr ("DX");
int w;
loadRegisterTables();
string a=findRegisterBinary(nstr,w);
cout<<endl<<w<<"\t a:"<<a;
return 0;
}