Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
14th Feb Programming Project v.01
//gcc 5.4.0 #include <stdio.h> int main(void) { //----------------------------------------------------------------------------------- //Part 1-1 Draw Equitorial Triangle printf("----------------------------------------------------------\n Part 1-1\n"); printf(" *\n * *\n * * *\n* * * *\n"); //Part 1-2 Draws Square printf("Part 1-2\n* * * * *\n* * * * *\n* * * * *\n* * * * *\n* * * * *\n"); printf("----------------------------------------------------------\n Part 2\n"); //-------------------------------------------------------------- char CustomerName[30]; double Days; double costperDay; costperDay=30; double costofDays; double Miles; double costperMile; costperMile=.5; double costofMiles; double Gallons; double costperGallon; costperGallon=1.5; double costofGallons; double TotalRentalCost; printf("Customer name:\n Number of days:\n Number of miles:\n Number of gallons:\n------------------------------\n Total Rental Cost:$_______\n------------------------------\n"); scanf("%c%lf%lf%lf",&CustomerName,&Days,&Miles,&Gallons); costofDays=costperDay*Days; costofMiles=costperMile*Miles; costofGallons=costperGallon*Gallons; TotalRentalCost=costofDays+costofMiles+costofGallons; printf("Customer name:%c\n Number of days:%lf\n Number of miles:%lf\n Number of gallons:%lf\n------------------------------\n Total Rental Cost:$%lf_______\n",CustomerName,Days,Gallons,Miles,TotalRentalCost); //Part 3 }
run
|
edit
|
history
|
help
0
Array Sum
pth_trap.c
A_141124_arrayMaxMin01
convertletter
G
variable number of arguments 3
joseph a triangle
Spring 2017 Project 2 v1.3
project menu
NETFLIX TERMINADO