Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
14th Dec Project1 v0.2
//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[100]; 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("%s%lf%lf%lf",&CustomerName,&Days,&Miles,&Gallons); costofDays=costperDay*Days; costofMiles=costperMile*Miles; costofGallons=costperGallon*Gallons; TotalRentalCost=costofDays+costofMiles+costofGallons; printf("Customer name:%s \n Num ber 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 printf("----------------------------------------------------------------------\n Part 3"); }
run
|
edit
|
history
|
help
0
18BCE2182 ASSESS_3 Q2
18BCE2182 ASSESS_2 Q2
20171116:FUNCIONES
Maze
Float ispis
141124_PI
Project 3 Part 1 v1.2
ctest
02468
sum of arrays