長整數的基本操作
// LongInt.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "string.h"
#define MAXLEN 50
/*
function InputLongInt()長整數輸入函式
*/
int InputLongInt(int *a,char *para)
{
int len,i;
char number[MAXLEN];
printf("請輸入[%s]長整數: ",para);
scanf("%s",number);
len = strlen(number);
for(i=len;i>=1;i--)
a[i] = number[len-i]-'0';
a[0] = len;
return(a[0]);
}
/*
function OutputLongInt()長整數輸出函式
*/
void OutputLongInt(int *a,char *para)
{
int i;
printf("輸出的[%s]長整數: ",para);
for(i=a[0];i>=1;i--)
printf("%d",a[i]);
printf(" ");
}
/*
function FormatLongInt()長整數規範化函式
*/
int FormatLongInt(int *a)
{
int p;
for(p=1;p<a[0]||a[p]>=10;p++)
{
if(p>=a[0])
a[p++] = 0;
a[p++] += a[p]/10;
a[p] = a[p]%10;
}
if(p>a[0])
a[0] = p;
return(a[0]);
}
/*
function LongIntAddLongInt()長整數加長整數函式
相加的和放在陣列A中
*/
void LongIntAddLongInt(int *a,int *b)
{
int i;
while(a[0] < b[0])
a[++a[0]] = 0;
for(i=1;i<=b[0];i++)
a[i] += b[i];
FormatLongInt(a);
}
/*
function LongIntDivInt()長整數除普通整數函式
除得的商放在陣列A中,餘數放在返回值中
*/
int LongIntDivInt(int *a,int divisor)
{
int p, //儲存相除後的餘數下標
k; //儲存數字個數(長整數有效數字個數)
k = p = a[0];
a[0] = 0;
while(p>0)
{
a[p-1] += a[p] % divisor * 10;
a[p] = a[p] / divisor;
if(a[k]==0)
k--;
p--;
}
p = a[0] / 10; //儲存餘數
a[0] = k; //回寫有效數字個數
FormatLongInt(a);
return(p);
}
/*
function LongIntDivInt()長整數轉換成二進位制數函式
轉換的二進位制數儲存陣列B中
*/
void LongIntToBin(int *a,int *b)
{
int p;
b[0] = 0;
while(a[0] > 0)
{
b[0]++;
b[b[0]] = a[1] % 2;
p = a[0];
while(p > 0)
{
if((a[p] % 2) && (p > 1))
a[p-1] += 10;
a[p] /= 2;
if(a[a[0]] == 0)
a[0]--;
p--;
}
}
}
int main(int argc, char* argv[])
{
int a[MAXLEN],b[MAXLEN];
int len,residue;
/*
len = InputLongInt(a);
printf("源長整數的長度是:%d ",len);
str = "源";
OutputLongInt(a,str);
len = FormatLongInt(a);
printf("規範化後長整數的長度是:%d ",len);
str = "規範化後";
OutputLongInt(a,str);
residue = LongIntDivInt(a,11);
str = "除以普通整數11後";
OutputLongInt(a,str);
printf("長整數除以普通整數11後的餘數是:%d ",residue);
*/
len = InputLongInt(a,"第一個加數");
//len = InputLongInt(b,"第二個加數");
//LongIntAddLongInt(a,b);
//OutputLongInt(a,"兩數相加的和");
LongIntToBin(a,b);
OutputLongInt(b,"轉換後的二進位制數");
printf(" 應用程式正在執行! ");
return 0;
}
//
#include "stdafx.h"
#include "string.h"
#define MAXLEN 50
/*
function InputLongInt()長整數輸入函式
*/
int InputLongInt(int *a,char *para)
{
int len,i;
char number[MAXLEN];
printf("請輸入[%s]長整數: ",para);
scanf("%s",number);
len = strlen(number);
for(i=len;i>=1;i--)
a[i] = number[len-i]-'0';
a[0] = len;
return(a[0]);
}
/*
function OutputLongInt()長整數輸出函式
*/
void OutputLongInt(int *a,char *para)
{
int i;
printf("輸出的[%s]長整數: ",para);
for(i=a[0];i>=1;i--)
printf("%d",a[i]);
printf(" ");
}
/*
function FormatLongInt()長整數規範化函式
*/
int FormatLongInt(int *a)
{
int p;
for(p=1;p<a[0]||a[p]>=10;p++)
{
if(p>=a[0])
a[p++] = 0;
a[p++] += a[p]/10;
a[p] = a[p]%10;
}
if(p>a[0])
a[0] = p;
return(a[0]);
}
/*
function LongIntAddLongInt()長整數加長整數函式
相加的和放在陣列A中
*/
void LongIntAddLongInt(int *a,int *b)
{
int i;
while(a[0] < b[0])
a[++a[0]] = 0;
for(i=1;i<=b[0];i++)
a[i] += b[i];
FormatLongInt(a);
}
/*
function LongIntDivInt()長整數除普通整數函式
除得的商放在陣列A中,餘數放在返回值中
*/
int LongIntDivInt(int *a,int divisor)
{
int p, //儲存相除後的餘數下標
k; //儲存數字個數(長整數有效數字個數)
k = p = a[0];
a[0] = 0;
while(p>0)
{
a[p-1] += a[p] % divisor * 10;
a[p] = a[p] / divisor;
if(a[k]==0)
k--;
p--;
}
p = a[0] / 10; //儲存餘數
a[0] = k; //回寫有效數字個數
FormatLongInt(a);
return(p);
}
/*
function LongIntDivInt()長整數轉換成二進位制數函式
轉換的二進位制數儲存陣列B中
*/
void LongIntToBin(int *a,int *b)
{
int p;
b[0] = 0;
while(a[0] > 0)
{
b[0]++;
b[b[0]] = a[1] % 2;
p = a[0];
while(p > 0)
{
if((a[p] % 2) && (p > 1))
a[p-1] += 10;
a[p] /= 2;
if(a[a[0]] == 0)
a[0]--;
p--;
}
}
}
int main(int argc, char* argv[])
{
int a[MAXLEN],b[MAXLEN];
int len,residue;
/*
len = InputLongInt(a);
printf("源長整數的長度是:%d ",len);
str = "源";
OutputLongInt(a,str);
len = FormatLongInt(a);
printf("規範化後長整數的長度是:%d ",len);
str = "規範化後";
OutputLongInt(a,str);
residue = LongIntDivInt(a,11);
str = "除以普通整數11後";
OutputLongInt(a,str);
printf("長整數除以普通整數11後的餘數是:%d ",residue);
*/
len = InputLongInt(a,"第一個加數");
//len = InputLongInt(b,"第二個加數");
//LongIntAddLongInt(a,b);
//OutputLongInt(a,"兩數相加的和");
LongIntToBin(a,b);
OutputLongInt(b,"轉換後的二進位制數");
printf(" 應用程式正在執行! ");
return 0;
}
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=935663
相關文章
- 大整數操作
- OpenCV成長之路(6):數學形態學基本操作及其應用OpenCV
- 二分法(整數型別)的基本框架型別框架
- Go 操作 Redis 的基本操作GoRedis
- Docker的基本操作Docker
- MySQL的基本操作MySql
- git的基本操作Git
- 模組的基本操作
- 棧的基本操作
- webdriver的基本操作Web
- hash的基本操作
- 請教一個Python中長整數的問題Python
- PHP操作MongoDB時的整數問題及對策UQPHPMongoDB
- 使用純粹的ABAP位操作實現兩個整數相加
- 活動(Activity)的基本操作
- JS — 物件的基本操作JS物件
- react的基本操作(1)React
- Hive表的基本操作Hive
- Vim命令的基本操作
- Numpy的基本操作(五)
- Hbase shell的基本操作
- git的基本操作(一)Git
- Docker映象的基本操作Docker
- 佇列的基本操作佇列
- ThinkPHP 的CURD 基本操作PHP
- DriveInfo類的基本操作
- FileInfo類的基本操作
- File類的基本操作
- Dataload的基本操作
- 陣列的基本操作陣列
- 輸入一個整數,返回這個整數的位數
- C語言程式設計-長整數加法運算C語言程式設計
- Python如何對浮點數進行取整操作?Python
- 一個把IP地址轉化為長整數的指令碼(轉)指令碼
- 2034 整數的個數
- webpack 基本操作Web
- Git基本操作Git
- Laravel 基本操作Laravel