gpt4 book ai didi

c - 十进制转换为基数 2-16(二进制到十六进制)

转载 作者:太空宇宙 更新时间:2023-11-04 01:07:59 25 4
gpt4 key购买 nike

嘿,我正在编写一个程序,将十进制数转换为从二进制到十六进制的任何基本单位 (2,3,4,....,15,16)。这是我到目前为止所拥有的,运行 2 - 15 中的任何数字都会导致无限循环。我想知道您是否对我的项目的其余部分有任何建议。运行时,这将要求您提供两个整数,第一个应该是大于 0 的十进制整数,第二个应该是您要将其转换为的基本类型。非常感谢完成此操作的任何和所有建议!谢谢。

#include <stdio.h>
#include <stdlib.h>

int main(void){

int x, y, z, c;

printf("Please enter two integers: ");
scanf("%d", &x);
scanf("%d", &y);

printf("%d\n", x);
printf("%d\n", y);
printf(" \n");

if(y < 2 | y > 16){
printf("You have entered incorrect information.\n");
return 0;
}
else if(y > 1 && y < 16){

while(z != 0){
z = (x/y);
c = (x%y);
printf("%d\n", z);
}
printf("%d\n", z);
printf("%d\n", c);
}
else if(y == 16){
printf("%X\n", x);
}

}

********* *************编辑************* *********

#include <stdio.h>
#include <stdlib.h>

int main(void){

int x, y, z, c, i;

printf("Please enter two integers: ");
scanf("%d", &x);
scanf("%d", &y);

printf("%d\n", x);
printf("%d\n", y);
printf(" \n");

if(y < 2 || y > 16){
printf("You have entered incorrect information.\n");
return 0;
}
else if(y > 1 && y < 17){

while(x != 0){
c = (x%y);
x = (x/y);

if( c > 1 && c < 10){
printf("%d", c);

}else if( c == 10){
c = printf("A");
}else if( c == 11){
c = printf("B");
}else if( c == 12){
c = printf("C");
}else if( c == 13){
c = printf("D");
}else if( c == 14){
c = printf("E");
}else if( c == 15){
c = printf("F");
}
}
printf("\n");
}

这是我目前取得的进展。我的问题是:我无法让值 A-F 正确输出以表示数字 10-15。我也无法以正确的方式显示整数。我认为这是一个简单的修复,但我还不习惯这个命令。谢谢大家的帮助,受益匪浅。

********* 编辑 2 ************

#include <stdio.h>
#include <stdlib.h>

int main(void){

int x, y, z, c; //Sets up variables to be used in program

printf("Please enter two integers: "); //Asks for user input
scanf("%d", &x);
scanf("%d", &y); //stores input

printf("%d\n", x);
printf("%d\n", y);
printf(" \n");

if(y < 2 || y > 16){
printf("You have entered incorrect information.\n");
return 0;
} //bug checks

else if(y > 1 && y < 17){

while(x != 0){
c = (x%y);
x = (x/y); // Loops numbers until a 0 value is reached, can be used with
// any Base

if( c == 10){
c = printf("A");
}else if( c == 11){
c = printf("B");
}else if( c == 12){
c = printf("C");
}else if( c == 13){
c = printf("D");
}else if( c == 14){
c = printf("E");
}else if( c == 15){
c = printf("F");
}else{
printf("%d", c);
}
// Returns for each remainer option
}
printf("\n");
}
}

好的第三次是魅力。我现在的代码唯一的问题是我无法弄清楚如何以相反的顺序输出它,正确的顺序。忽略我的第二次编辑,我自己解决了。任何输入都会很棒。我真的不知道我将如何让它逆转。谢谢大家!

最佳答案

这很有趣。一些建议:

  • 使用描述性变量名(基数、余数、数字、数字等)
  • 不要作弊,使用 %X 是错误的
  • 如何支持以 36 为基数的十二进制 (sp?)?
  • 为大于 9 的数字符号打印出有用的符号(字母?)
  • 考虑终止条件,你没有改变 z(余数),因此你的循环
  • 您以相反的顺序打印数字,从右到左而不是从左到右

此版本最多可处理 36 进制,为大于 9 的数字符号打印字母,并打印相反顺序和预期顺序...

#include <stdio.h>
#include <stdlib.h>

char BASIFICATION[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int MAXBASE=36;
int main(void)
{
int done=0;
long num, base, remainder, digit;

printf("Number Base Convertificator\n");
printf("(enter 0 0 when done)\n");
while( !done)
{
printf("Please enter two integers: ");
scanf("%d", &num);
scanf("%d", &base);
if( (base<2) || (base>MAXBASE) ) //avoid precedence until you are comfortable/confident with it
{
printf("Please enter base between 2 and %d.\n",MAXBASE);
if(base<=0) done=1;
continue;
}
printf("%d\n", num);
printf("%d\n", base);
printf("\n");
if(base == MAXBASE) //cheaters never win!
{
printf("%XX\n", num);
continue;
}
//if(base > 1 && base < MAXBASE)
{
char reversed[99], ndx=0;
//this prints your digits in reverse order
remainder = num;
while(remainder > 0) //numerical methods, avoid skipping below zero (irrelevant here, but good habit)
{
digit = (remainder%base);
remainder = (remainder/base);
printf("%c ", BASIFICATION[digit]);
//printf("%c %d (%d)\n", BASIFICATION[digit], digit, remainder);
reversed[ndx++] = BASIFICATION[digit];
}
printf("\n");
//reverse digits to print in expected order
for( ; ndx>0; ) { printf("%c ",reversed[--ndx]); }
printf("\n");
}
}
}

运行时,

Number Base Convertificator
(enter 0 0 when done)
Please enter two integers: 1020 2
1020
2

0 0 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 0 0
Please enter two integers: 252 16
252
16

C F
F C
Please enter two integers: 99
8
99
8

3 4 1
1 4 3

现在,您将如何修改它以将输入字符串转换为指定的基数?

关于c - 十进制转换为基数 2-16(二进制到十六进制),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19147937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com