Click to See Complete Forum and Search --> : Need Help


CbrMas1
04-17-2005, 07:48 PM
how do I program my own antivirus or antispyware software

7stud
04-17-2005, 09:35 PM
I would start with something like this:
class GoAwayViruses
{
public static void main(String[] args)
{
int num = 10;
for(int i = 0; i < num ; i++)
{
System.out.println("Viruses, boo!");
}
}
}
...and in subsequent versions get progressively more sophisticated.