(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制

(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制

ID:14393464

大小:45.50 KB

頁(yè)數(shù):12頁(yè)

時(shí)間:2018-07-28

(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制_第1頁(yè)
(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制_第2頁(yè)
(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制_第3頁(yè)
(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制_第4頁(yè)
(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制_第5頁(yè)
資源描述:

《(c語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。

1、(C語(yǔ)言)10進(jìn)制轉(zhuǎn)換2,8,16進(jìn)制作者:vinseven#include"stdio.h"#include"conio.h"#include"malloc.h"#include"windows.h"#defineElemTypeintvoidmenu();voidTenToTwo();voidTenToEight();voidTenToSixteen();voidInitStack(structsNode**HS);voidPush(structsNode**HS,ElemTypex);ElemTypePop

2、(structsNode**HS);ElemTypePeek(structsNode**HS);intEmptyStack(structsNode**HS);voidClearStack(structsNode**HS);intten;/*要輸入的10進(jìn)制數(shù)*/intx;/*把將要插入到棧中的元素暫時(shí)存進(jìn)x中*/structsNodehs;structsNode{ElemTypedata;structsNode*next;};voidmain(){menu();getch();}voidmenu(){charch

3、oice;intflag=1;while(1){printf("ttt________________________");printf("ttt1,10進(jìn)制轉(zhuǎn)換2進(jìn)制");printf("ttt2,10進(jìn)制轉(zhuǎn)換8進(jìn)制");printf("ttt3,10進(jìn)制轉(zhuǎn)換16進(jìn)制");printf("ttt0,退出");printf("ttt________________________");printf("t

4、tt請(qǐng)輸入編號(hào):");while(flag){fflush(stdin);choice=getch();switch(choice){case'1':{system("cls");TenToTwo();flag=0;break;}case'2':{system("cls");TenToEight();flag=0;break;}case'3':{system("cls");TenToSixteen();flag=0;break;}case'0':{printf("ttt按任意鍵退出");getch()

5、;exit(0);}default:{printf("ttt無(wú)此選項(xiàng)可選!請(qǐng)重新輸入!");flag=1;break;}}}system("cls");flag=1;}}/*10進(jìn)制轉(zhuǎn)換2進(jìn)制界面*/voidTenToTwo(){printf("ttt________________________");printf("ttt10進(jìn)制轉(zhuǎn)換2進(jìn)制界面");printf("ttt________________________");printf("

6、ttt請(qǐng)輸入10進(jìn)制數(shù):");scanf("%d",&ten);while(ten!=0){x=ten%2;Push(&hs,x);ten=ten/2;}printf("ttt二進(jìn)制數(shù)為:");while(!EmptyStack(&hs))printf("%d",Pop(&hs));getch();}/*10進(jìn)制轉(zhuǎn)換8進(jìn)制界面*/voidTenToEight(){printf("ttt________________________");printf("ttt10進(jìn)制轉(zhuǎn)換8進(jìn)

7、制界面");printf("ttt________________________");printf("ttt請(qǐng)輸入10進(jìn)制數(shù):");scanf("%d",&ten);while(ten!=0){x=ten%8;Push(&hs,x);ten=ten/8;}printf("ttt八進(jìn)制數(shù)為:");while(!EmptyStack(&hs))printf("%d",Pop(&hs));getch();}/*10進(jìn)制轉(zhuǎn)換16進(jìn)制界面*/voidTenToSixteen(){in

8、ttemp;printf("ttt________________________");printf("ttt10進(jìn)制轉(zhuǎn)換16進(jìn)制界面");printf("ttt________________________");printf("ttt請(qǐng)輸入10進(jìn)制數(shù):");scanf("%d",&ten);while(ten

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫(huà)的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無(wú)此問(wèn)題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫(kù)負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無(wú)法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。