program.cs
来自「A demo of create a BIG Integer」· CS 代码 · 共 34 行
CS
34 行
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace _512132_BigInteger
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
MyBigInt x = new MyBigInt("2");
// MyBigInt y = new MyBigInt(-3248593475928759);
MyBigInt y = new MyBigInt("-203021032015493695049685490659405932094209302103021930231092103902930293209329384539685943219321093859485943584");
MyBigInt c = x ^ 700;
MessageBox.Show(c.ToString());
//MyBigInt c ;//= new MyBigInt("83921839183217389137921738291738291378921738921372917359837954739854971938908310284098493589485094380983021");
// if (x < y)
// MessageBox.Show("x<y");
// else
// MessageBox.Show("x>y");
//MessageBox.Show(c.ToString());
// Application.Run(new frmMain());
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?