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
strrev
main.c
B_141128_MatrizUnSoloIndice
WrongWay reversible iterator Copyright(C) 2016 Henry Kroll III www.thenerdshow.com
Official Hello World
BigInteger maxMinSum
ChangeStructVal
Code2
A_141117_Primo02
C_141203_PALINDROMO