Key logger ekak hadala umbe PU*E gahanawa mamahishan1983 said:if you know java can you make a keylogger for me.




Key logger ekak hadala umbe PU*E gahanawa mamahishan1983 said:if you know java can you make a keylogger for me.




nagaya said:1st C/C++ next Java![]()
crazycombo said:i think thats the best way from My point of view. but loads of people like to jump start with java.
visit www.sinhalapro.tk .
crazycombo said:wonna learn java in simple SINHALA???.......
then visit
http://dynamicadahas.wordpress.com/
¤--bACarDi--¤ said:Machanzla Java is good for Mobiles & Other devices...
Bt on PCs C# is da best language now.....Study it...

wajiras said:mamath awa , eth java mukuth dan nathoooooooooooo
program that inputs a number and prints whether the number is positive number, negative number or zero. Repeat for 5 numbers.
eg1: Numbers.java
import java.util.Scanner;
public class Numbers
{
public static void main (String [] a)
{
Scanner input = new Scanner(System.in);
for(int j=0; j<5; j++)
{
System.out.println("Enter a number:");
double n = input.nextDouble();
if(n>0)
System.out.println(n +" is a positive number");
else if(n<0)
System.out.println(n +" is a negative number");
else
System.out.println(n +" is a zero number");
}
System.out.println("Type your name:");
String name = input.nextLine();
System.out.println("Hello "+ name);
}
}
