0
int main(int argc, const char * argv[])
{

char userInput;

int centimeter;
int meter;

float centimeterFloat = 0.0;
float meterFloat = 0.0;

printf("Enter c for centimeter to meter OR m for meter to centimeter:  ");
userInput = getchar();
//If the user types in 'm' or 'M' the progrsm will ask you to type in the length in meters and it will converts to centimeters.

if (userInput == 'M')
    userInput = 'm';
if (userInput == 'm')
{
//This calculation is to convert meters to centimeters.
    printf("\nEnter the length in meter:  ");
    scanf("%d", &meter);
    centimeterFloat
    = (meter * 100);
    printf("\nmeter\tcentimeter\n");
    printf("%d\t\t\t%4.0f\n", meter, centimeterFloat);
}
//If the user types in 'c' or 'C' the program will ask you to type in the length in centimeters and it will converts to meters.
if (userInput == 'C')
    userInput = 'c';
else if (userInput == 'c')
{
    printf("\nEnter the length in centimeter:  ");
    scanf("%d", &centimeter);
//This calculation is to convert centimeters to meters.
    meterFloat = (centimeter * 1/100);
    printf("\nmeter\tcentimeter\n");
    printf("%3.1f\t\t\t%d\n", meterFloat, centimeter);
}


return 0;
}

これは私のコードですが、入力を 10 進数として入力すると、出力が適切に出力されません。助けてください。 if else ステートメントでプログラムしますか? 助けてくださいどうもありがとう

4

3 に答える 3

2

変化する:

meterFloat = (centimeter * 1/100);

に:

meterFloat = (centimeter * 1.0/100);

centimeter1および100はすべてints であり、整数の乗算と除算が行われます。整数除算を使用すると、 >でない限り、centimeter/100になる可能性があります。0centimeter100

于 2013-09-29T12:52:01.063 に答える
1

変化する

int centimeter;
int meter;

float centimeter;
float meter; 

入力%dをおよび %f_ _scanfmetercentimeter

于 2013-09-29T12:41:08.433 に答える