What's new

C & C++ (SOLVED) Help float

Status
Not open for further replies.

missterry

Eternal Poster
Joined
Jun 7, 2020
Posts
1,147
Solutions
2
Reaction
333
Points
361
Hi! Sa mga experts pwede po pa check anong mistake ko dito. Inches to feet conversion pala to. If I input 82 for my inches, if converted into feet which is by dividing it into 12, I should expect an output of 6.8. But in my case, 6.0 lang yung lumalabas. Pa help po. Here's my source code for your reference. Thank you so much!

C:
#include <stdio.h>

/*
User should input his/her height in inches
Output should be:
Height in inches:_
Your _ inches or _ feet tall
*/

int main(){
    int inches;
    float feet;
   
    printf("You height in inches: ");
    scanf("\n%d", &inches);
    printf("Height in Inches: %d", inches);
    feet=inches/12;
    printf("\nYou are %d inches or %.1f feet tall", inches,feet);
   
    return 0;
}[/ICODE]
 
Last edited:
You can make your inches data type to float or typecast it during computation.

Sa C kase pag nag divide kang int, int rin itatapon sayo.
 
Status
Not open for further replies.

Similar threads

Back
Top