Hi,
Can anybody help me how to print value of double format with Console.Write?
Here is example what I want
double Cr = 2048 / counterTotal1;
Console.WriteLine("Compression ratio: " + Cr.ToString());
which doesn't work
Thanks
Hi,
Can anybody help me how to print value of double format with Console.Write?
Here is example what I want
double Cr = 2048 / counterTotal1;
Console.WriteLine("Compression ratio: " + Cr.ToString());
which doesn't work
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Nov 25, 2014, 4:20 PM
So try:
NelPosted Nov 25, 2014, 5:38 PM