Percentage Calculation in Decimal


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Percentage Calculation in Decimal
# 1  
Old 11-14-2012
Percentage Calculation in Decimal

Hi,

I have two variable and I need to calculate the percentage of them.

Example:

(b-a)*100/b

How can I do it? I need to do it till 2 decimal point.
# 2  
Old 11-14-2012
ksh93:
Code:
$ a=10
$ b=13.5
$ printf "%.2f\n" $(((b-a)/b*100))
25.93

or with bc:
Code:
$ a=10
$ b=13.5
$ printf "%.2f\n" $(echo "scale=2\n(($b-$a)*100)/$b"|bc)
25.92


Last edited by elixir_sinari; 11-14-2012 at 07:06 AM..
# 3  
Old 11-14-2012
not working Smilie

Code:
[[XXXXXXXXXXXXXXXXX]:~ 07:01:55 $]b=47
[[XXXXXXXXXXXXXXXXX]:~ 07:02:09 $]a=7
[[XXXXXXXXXXXXXXXXX]:~ 07:02:16 $]printf "%.2f\n" $(((b-a)/b*100))
0.00
[[XXXXXXXXXXXXXXXXX]:~ 07:02:20 $]printf "%.2f\n" $(((b-a)*100/b))
85.00
[[XXXXXXXXXXXXXXXXX]:~ 07:02:37 $]printf "%.2f\n" $(echo "scale=2\n(($b-$a)*100)/$b"|bc)
(standard_in) 1: illegal character: \
(standard_in) 1: parse error
0.00



Please help.
1st one not giving decimal output and 2nd one not working.

Last edited by Scott; 11-14-2012 at 08:49 AM.. Reason: Code tags
# 4  
Old 11-14-2012
Code:
printf "%.2f\n" $(echo -e "scale=2\n(($b-$a)*100)/$b"|bc)

This User Gave Thanks to elixir_sinari For This Post:
# 5  
Old 11-14-2012
now working like a charm Smilie
# 6  
Old 11-30-2012
hi,One problem ..
It's not rounding Smilie
For example if output is 12.359 then it is giving 12.35 not 12.36
Can anybody help me doing it?
# 7  
Old 11-30-2012
Quote:
Originally Posted by Anupam_Halder
hi,One problem ..
It's not rounding Smilie
For example if output is 12.359 then it is giving 12.35 not 12.36
Can anybody help me doing it?
Which shell you are using..?

Code:
$ printf "%.2f\n" 12.359
12.36

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with awk percentage calculation from a file

i have a file say test with the below mentioned details Folder Name Total space Space used /test/test1 500.1GB 112.0 GB /test/test2 3.2 TB 5TB /test/test3 3TB 100GB i need to calculate percentage of each row based on total space and space used and copy... (9 Replies)
Discussion started by: venkitesh
9 Replies

2. Shell Programming and Scripting

Percentage calculation

Hi, I have a text file in below format. I trying to find a solution for finding percentage used for each of the NAMEs. Directory ALLOCATED USED NAME1 93MB 93KB NAME2 25G 62K NAME3 14G 873M NAME4 25G 62K NAME5 20G... (10 Replies)
Discussion started by: ctrld
10 Replies

3. Programming

Urgent help needed.. C++ program to convert decimal to hexa decimal

Hi , seq can be 0...128 int windex = seq / 8; int bindex = seq % 8; unsigned char bitvalue = '\x01' << (7-bindex) ; bpv.bitmapvalue = bitvalue; This is the part of a program to convert decimal to bitmap value of hexadecimal. I want this to change to convert only to... (1 Reply)
Discussion started by: greenworld123
1 Replies

4. Shell Programming and Scripting

Percentage calculation

i am trying to get percentage : but not able to do it: i tried : x=1 y=2 z=`expr $x/$y*100` it is not giving me result can u pls help on this (4 Replies)
Discussion started by: Aditya.Gurgaon
4 Replies

5. Shell Programming and Scripting

Decimal number calculation problem

I have a below snippet of code from my perl script and its causing a problem when the output of $lTAX is 0 (zero) its getting displayed as -0.00. I want output to be 0 not -0.00. Any help would be appreciated. #!/usr/bin/perl my $lTotA = 50.94; my $lVatA = 8.49; my $lAllocD; my $lAdjNr =... (4 Replies)
Discussion started by: Devesh5683
4 Replies

6. Homework & Coursework Questions

Decimal to BCD (Binary Coded Decimal)

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: Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary... (2 Replies)
Discussion started by: caramba
2 Replies

7. UNIX for Dummies Questions & Answers

Decimal to BCD (Binary Coded Decimal)

Anybody please help me... Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary Coded Decimal) representation. Also, draw its Flow Chart. This is a unix qn... plz post algorithm for that :confused: (1 Reply)
Discussion started by: caramba
1 Replies

8. Shell Programming and Scripting

awk/sed percentage calculation

Hi all i have a text file with columns delimited with , 2010-08-18,10,24,.09751,39,7,14872,26732 . . . i would to add a extra column in the end with percentage calculation of columns 5 and 8 ie (39/26732)*100 so the output must look like ... (6 Replies)
Discussion started by: posner
6 Replies

9. Shell Programming and Scripting

decimal calculation

Hi am calculating the percentage of the pass and fail. Pass: echo `echo 1498*100/1667| bc`% fail: echo `echo 169*100/1667 | bc`% for this am getting PASS= 89% fail =10 % I need to fetch the exact decimal percentage like PASS = 89.8 % FAIL= 10.2 % Please advice me (3 Replies)
Discussion started by: bobprabhu
3 Replies
Login or Register to Ask a Question