You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here i cannot find the last value it gives me the $0.00 value everytime if anyone knows please help me out.
and at the terminal window where we run our code it is showing me this
Bill before tax and tip:
this is wrong i cannot run the code like this it should be just like this
$: right???
now after restarting when i write make half and ./ half both times it is saying that half is a directory and ./half is a directory :(
This is the code i write for my problem set 1 half.
#include <cs50.h>
#include <stdio.h>
int main (void)
{
int bill = get_int("bill ?");
int tax = get_int("tax ?");
int tip = get_int("tip ?");
printf(" bill is %i. tax is %i. tip is %i. , bill , tax, tip");
}
The text was updated successfully, but these errors were encountered:
now after restarting when i write make half and ./ half both times it is saying that half is a directory and ./half is a directory :(
Everytime you restart your CodeSpace, the terminal goes back to the home directory. You need to use the "cd" command to go back into the directory where your program is. In this case, use cd half
printf(" bill is %i. tax is %i. tip is %i. , bill , tax, tip");
You aren't passing any values to the format parameters here, and it appears that you are not calling the half() function at all.
I believe the provided distribution code included the line: printf("You will owe $%.2f each!\n", half(bill_amount, tax_percent, tip_percent)); already.
You need to implement the half() function below main so that it returns the correct value to the printf statement.
Here i cannot find the last value it gives me the $0.00 value everytime if anyone knows please help me out.
and at the terminal window where we run our code it is showing me this
Bill before tax and tip:
this is wrong i cannot run the code like this it should be just like this
$: right???
now after restarting when i write make half and ./ half both times it is saying that half is a directory and ./half is a directory :(
This is the code i write for my problem set 1 half.
#include <cs50.h>
#include <stdio.h>
int main (void)
{
int bill = get_int("bill ?");
int tax = get_int("tax ?");
int tip = get_int("tip ?");
}
The text was updated successfully, but these errors were encountered: