Mr. Sarkar's Outdated Computer Science Blog
To go to the updated website, go to: westhillcs.com
Wednesday, June 24, 2015
This Website Has Been Updated and Moved
Please click here to visit Mr. Sarkar's new classroom website.
Thursday, May 7, 2015
Monday, March 16, 2015
Playing Card Lab Now Due Day Before Break
The due date of the playing card lab has again been pushed out. It is now due the Friday before break.
mr. sarkar
mr. sarkar
Friday, March 13, 2015
How to pass a filename to a program
The code below assumes that the filename to be used by the progam is contained in args[0]
public class FileNameDemo
{
public static void main(String [] args) {
String fileName = args[0];
FileReader reader = new FileReader(fileName);
Scanner inputFile = new Scanner(reader);
}
}
public class FileNameDemo
{
public static void main(String [] args) {
String fileName = args[0];
FileReader reader = new FileReader(fileName);
Scanner inputFile = new Scanner(reader);
}
}
Friday, March 6, 2015
Playing Card Lab Due Date Pushed to 3/23
Given all the sorting code is due next week, the Playing Card Lab is now due on 3/23.
mr. sarkar
mr. sarkar
Thursday, February 5, 2015
Friday, January 30, 2015
Monday February 2nd - After School Help is Back On!
My meeting has been cancelled so there will be help after school on monday.
Subscribe to:
Posts (Atom)