C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2722
Number of posts: 5749

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
C# math operation will not work used for Celsisus and Fahreheit Posted by ipodtrip on 12 Feb 2012 at 9:10 PM
To anyone
have this Celsius to Fahrenheit program but when I enter a number 10 in the textbox it gives me 42 instead of 50
here is the formula to use for the program code.
F=9/5C+32


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace CelsiusandFahrenheitconverter
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
double celsius,tempconversion,fahrenheit;

celsius = double.Parse(textBox1.Text);
tempconversion = celsius*(9 / 5) + 32;
fahrenheit = tempconversion;
textBox2.Text = fahrenheit.ToString();




}
}
}

Report
Re: C# math operation will not work used for Celsisus and Fahreheit Posted by skaa7 on 13 Feb 2012 at 9:01 AM
Change 9 to 9.0.
Report
Re: C# math operation will not work used for Celsisus and Fahreheit Posted by ipodtrip on 13 Feb 2012 at 10:09 AM
perfect that worked. Why did you change the 9 to 9.0.
I thought C# follows match order of operation which does calculations for brackets first, them multiply then add and subtract.

thank you.
Report
Re: C# math operation will not work used for Celsisus and Fahreheit Posted by ipodtrip on 13 Feb 2012 at 10:11 AM
perfect that worked. Why did you change the 9 to 9.0.
I thought C# follows match order of operation which does calculations for brackets first, them multiply then add and subtract.

thank you.
Report
Re: C# math operation will not work used for Celsisus and Fahreheit Posted by skaa7 on 13 Feb 2012 at 10:31 AM
9 / 5 is integer division, actually is floor(9/5) because 9 and 5 are both the integers. Consider this as a rule...



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.