Convert inches to mm in JAVA?
I am in my second week of intro to Java and I am sssooo lost can someone please help me in plain english?
Convert inches to mm in JAVA?
public class IncToMM{
public static double incToMm(double inc){
return inc*25.4;
}
public static void main(String args[]){
double mm=incToMm(1);
System.out.println("1 inche is equal to "+mm+" milimeters");
}
}
Convert inches to mm in JAVA?
all you have to do is multiple the variable by 25.4
--standard math--
and display that result
don't know java, this is how i will do it in c++:
#include<iostream>
int main()
{
using namespace std;
double number;
cout << "Please enter a number in inches: ";
cin >> number;
number = number * 25.4;
cout << "Your number in mm is " << number;
system("pause");
return 0;
}
- C++......................?
- is there a less complicated c++ compiler than microsoft express 2008? i found it to complicated and hav found no other free program to make a fps. a t..
- C++???????
- I am trying to make a tic tac toe game for c++ but i dont know how to use an array to make the board. also after i make the board hiw do i code it so ..
- C++???????????????
- I HAVE NO IDEA WHAT C++ IS? and i have an exam tomorrow. I dont understand 1. character set 2.tokens. i also have the for statement program, if stat..
- C++..........................?
- where i find the best c++ programing books.C++..........................?AT www.esnips.com/C++..........................?Try doing a search. OReilly t..
- C++????????
- i need to know a simple program to concat two strings without using strcat inside operator overloading.plz help me with a program..............C++????..
- ...................c++?
- How would I create a program that that displays the sum of a sales amount in each of 4 regions, during a 3 month period, which would also display the ..
- "Smitfraud-C. Toolbar888&..
- I am a webmaster, and I am trying to build my website, but my computer keeps acting weird and seems to be going into random hybernation for no reason ..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
