September 17th, 2010 09:33 AM
Hi i have a problem with the following code:
<code>
import java.util.Scanner;
public class Woorden{
public static void main (String[] argv){
Scanner input = new Scanner(System.in);
String...
September 3rd, 2010 03:09 PM
Hi,
I have a question. If I have a class with a method that requires a parameter which is an instance of another class, how should I write the code for a method in that class which inputs the...
March 20th, 2010 07:44 AM
Thank you very much Paul! :)
March 20th, 2010 04:04 AM
I always used this function to convert from string to int, however if i want to convert a specific value of the string (say: string[n]), this does not work.
string test = "123";
int one =...
March 19th, 2010 05:43 PM
Hello,
I have the following situation:
I want to check if the char in a string is the same as an int.
So lets say:
int one = 1;
string test = "1234";