#include <stdio.h>
int main(void)
{
double orLbs;
int enerNum, yoNum;
double orPrice, ePrice, yPrice;
double tax = 0.065;
orPrice = orLbs*0.95;
ePrice = enerNum*1.5;
yPrice = yoNum*0.75;
printf("Lbs of Oranges? ");
scanf("%lf", &orLbs);
printf("Number of energy drinks? ");
scanf("%li", &enerNum);
printf("Item Cost Tax\n");
printf("Orange %.2f\n", orPrice);
printf("Energy Drinks %.2f %.2f\n", ePrice, ePrice*tax);
}
#include <stdio.h>
int main(void)
{
double orLbs = 0;
int enerNum = 0, yoNum = 0;
double orPrice = 0, ePrice = 0, yPrice = 0;
double tax = 0.065;
printf("Lbs of Oranges? ");
scanf("%lf", &orLbs);
printf("Number of energy drinks? ");
scanf("%li", &enerNum);
orPrice = orLbs*0.95;
ePrice = enerNum*1.5;
yPrice = yoNum*0.75;
printf("Item Cost Tax\n");
printf("Orange %.2f\n", orPrice);
printf("Energy Drinks %.2f %.2f\n", ePrice, ePrice*tax);
}