include int main() { /* variables definition */ float price, salestax, totalprice;
#include <stdio.h> int main() { /* variables definition */ float price, salestax, totalprice; /* Prompt user to input price in dollars */ printf(“Enter the price in dollars: \n”); // Input the price in dollars scanf(“%f”, &price); /* Prompt user to input state salestax */ printf(“Enter the state salestax: \n”); // Input the salestax scanf(“%f”, &salestax); // […]