Hey guys, I think I screwed up. I've been working since December. I entered my TFN and other details into SuccessFactors when I had to, but it seems that I didn't hit the submit button? I realised today after so many months that they've been charging ridiculous amounts of tax after looking at my...
http://www.ibtimes.co.uk/syria-least-85-civilians-feared-dead-after-us-air-strike-mistake-1571600
But of course, it only matters when it's western lives.
Yeah ikr... I had it on PS3 before though it was amazing on that.
So far I've bought DB Xenoverse and Batman Arkham City. Was hoping to play Arkham City today then saw the 17 GB download... X.X
Java:
import java.util.*;
import java.io.*;
public class wordCount {
public static void main(String[] args) {
File newFile = new File(args[0]);
int count = 0;
try {
Scanner scan = new Scanner(newFile);
while (scan.hasNext()) {
String word = scan.nextLine()...