Write a program with function "convert" which takes the temperature in Celsius and converts the equivalent Fahrenheit value

20/03/2013 00:10

 

public class abc
{
static double a=1.8;
static double c=100;
static double b=32;
static void convert()
{
double farenheit=a*c+b;
System.out.println(farenheit);
}
public static void main(String args[])
{
convert();
}
}