Need Help, How to round off to the nearest 5 sen?

 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Need Help, How to round off to the nearest 5 sen?
# 1  
Old 06-09-2011
Need Help, How to round off to the nearest 5 sen?

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!

1. The problem statement, all variables and given/known data:#include <stdio.h>
#define GTAX 0.06
#define STAX 0.10
int main(void)
{
int C_sets;
double Price_C;
double Sets_amount;
double Gov_amount;
double Ser_amount;
double Sub_total;
double D_voucher;
double A_payable;
double Adjusted_p;
double cash;
double change_due;

printf("Enter numbers of COMBO SETS >\t");
scanf("%d",&C_sets);
printf("Enter Price Per COMBO SETS >\tRM");
scanf("%lf",&Price_C);

Sets_amount=(float)C_sets * Price_C;
Gov_amount=(float)GTAX * Sets_amount;
Ser_amount=(float)STAX * Sets_amount;
Sub_total=(float)Sets_amount + Gov_amount + Ser_amount;

printf(" ////////////\\ \n");
printf(" ///////////// \\ \n");
printf(" ////////////// \\ \n");
printf(" | | |\n");
printf(" | K K L FFFF CCC |\n");
printf(" | K K L F C |\n");
printf(" | KK L FFF C |\n");
printf(" | K K L F C |\n");
printf(" | K K LLLL F CCC |\n");
printf(" = = = = = = = = = = = = \n\n");


printf("\t Good Day And Welcome to KLFC Sdn. Bhd.\n\n");
printf(" R E C E I P T \n");
printf("@+ * * * * * * * * * * + * * * * * * + * * * * * * * * + @\n");
printf(" | Description\t\t| Rate\t| Amount (RM) |\n");
printf("@+ * * * * * * * * * * + * * * * * * + * * * * * * * * + @\n");
printf(" < COMBO SETS * %d |%10.2lf |%15.2f >\n",C_sets, Price_C, Sets_amount);
printf(" < Government Tax |%10.2lf%% |%15.2f >\n",GTAX, Gov_amount);
printf(" < Service Tax |%10.2lf%% |%15.2f >\n",STAX, Ser_amount);
printf("@+ * * * * * * * * * * + * * * * * * + * * * * * * * * + @\n");
printf(" < S U B T O T A L | %14.2lf >\n",Sub_total);
printf("@= = = = = = = = = = = = = = = = = = = = = = = = = = = = = =@\n");
printf(" < Discount Voucher (RM) >\t");
scanf("%lf", &D_voucher);
printf(" <\t\t\t - - - - - \t\t\t >\n");

A_payable=(float)Sub_total - D_voucher;
printf(" < Amount Payable %10.2f\t\t\t >\n",A_payable);
printf(" <\t\t\t = = = = = \t\t\t >\n");
printf("@= = = = = = = = = = = = = = = = = = = = = = = = = = = = = =@\n");
printf("\t\t CASH \t\t");
scanf("%lf",&cash);
change_due=cash - A_payable;
printf("\t\t Change Due \t %.2lf\n",change_due);
printf("= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \n");
printf("\t THANK YOU and HAVE A NICE DAY \n");



return 0;

} how to adjust the amount payable into nearest 5 sen??



2. Relevant commands, code, scripts, algorithms:



3. The attempts at a solution (include all code and scripts):



4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):


Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).
# 2  
Old 06-09-2011
Closed, for template NOT fully filled, read the rules again!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Match and Grep the nearest value in last field

Gents I have this input file file1 (uniq records) 54503207851 170211240 54503207911 170210837 54503208111 170215105 54503208112 170215210 54655210011 170223140 54655210091 170223738 54655210172 170224355 54655210251 170224741 54655210331 170225039 54655210411 170225505 54655210492... (13 Replies)
Discussion started by: jiam912
13 Replies

2. Shell Programming and Scripting

Need to implement new CRON job or modify the existing one in MDM PROD in coming days, which will sen

Need to implement new CRON job or modify the existing one in MDM PROD in coming days, which will send email of SQL statement running from past 1 minute.Currently there is one CRON job in PROD, which send below email. there is one cron job which send email, when there is long running... (0 Replies)
Discussion started by: dampu
0 Replies

3. Shell Programming and Scripting

Rounding off to the nearest floating number

I have a number, which I want to convert into the nearest floating number upto two places after the decimal point. E.g. 1.2346 will become 1.23 but 1.2356 will become 1.24 . Similarly 0.009 will be 0.01 and 0.001 will be 0.00 or 0.0 (not 0, wnat to keep the decimal... (1 Reply)
Discussion started by: hbar
1 Replies

4. UNIX for Dummies Questions & Answers

Rounding up to nearest whole number

Hi all of you, Would be great if you help me with how to round up to whole number from my input values like 2.99996,2.17890,3.00002,-2.3456,-2.7890 o/p should be like 3,2,3,-2,-3 thnks in adv!!!! regards (3 Replies)
Discussion started by: Indra2011
3 Replies

5. Shell Programming and Scripting

AWK Match to nearest number

Hello Guys, I'm very new on here and require some help matching up and printing some columns using awk. I have two text files. The first file has Longitude data in column 1 (lon.txt) and the second one (node.txt) has again another Longitude data in column 1 (not exact as the first one) + in... (7 Replies)
Discussion started by: ian_gooch
7 Replies

6. UNIX for Dummies Questions & Answers

finding nearest value in a column

Hi, I have 2 files: file1: 1 ia 2 1 mn 6 1 sd 11 2 ny 3 2 ma 10 3 wa 7 3 ca 8 file2 1 mi 3 1 wi 5 2 pa 4 3 id 6 (2 Replies)
Discussion started by: peanuts48
2 Replies

7. Shell Programming and Scripting

merge file with nearest range !!!!!!!

I want join 2 files with range of numbers in ascending order according to the value of the numbers the input will be like this INPUT file1 column1 column2 10 14 20 25 56 58 83 90 FILE 2 column1 column 2 1 2 2 8... (15 Replies)
Discussion started by: bogu0001
15 Replies

8. UNIX for Dummies Questions & Answers

match nearest

Hi, I'm trying to find the nearest match between two columns of numbers, e.g. 1,1 10,8 30,50 20,100 and the search could be e.g. 20,20 returning 10,8 - i.e. 20-10 = 10 and 20-8 = 12 totalling 22, and hence being the nearest match. any ideas? thanks a lot, (1 Reply)
Discussion started by: bogu0001
1 Replies

9. Shell Programming and Scripting

Urgent help on grep the nearest value

Hi, I have a list of data in text files with :- ColA ColB ColC ColD ColE ColF 12 122 2280 30 0.012987 1.776 13 118 2280 30 0.012987 1.954 14 115 2620 30 0.011321 2.131 15 113 2654 30 0.011177 2.309 16 145 1882 25 0.013110 2.487 17 112... (2 Replies)
Discussion started by: ahjiefreak
2 Replies
Login or Register to Ask a Question