This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fourscoreandsevenyearsagoourfathersbroughtforthonthiscontinent,anewnation,conceivedinLiberty,anddedicatedtothepropositionthatallmenarecreatedequal. | |
Nowweareengagedinagreatcivilwar,testingwhetherthatnation,oranynationsoconceivedandsodedicated,canlongendure.Wearemetonagreatbattlefieldofthatwar.Wehavecometodedicateaportionofthatfield,asafinalrestingplaceforthosewhoheregavetheirlivesthatthatnationmightlive.Itisaltogetherfittingandproperthatweshoulddothis. | |
But,inalargersense,wecannotdedicate–wecannotconsecrate–wecannothallow–thisground.Thebravemen,livinganddead,whostruggledhere,haveconsecratedit,faraboveourpoorpowertoaddordetract.Theworldwilllittlenote,norlongrememberwhatwesayhere,butitcanneverforgetwhattheydidhere.Itisforustheliving,rather,tobededicatedheretotheunfinishedworkwhichtheywhofoughtherehavethusfarsonoblyadvanced.Itisratherforustobeherededicatedtothegreattaskremainingbeforeus–thatfromthesehonoreddeadwetakeincreaseddevotiontothatcauseforwhichtheygavethelastfullmeasureofdevotion–thatweherehighl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fourscoreandsevenyearsagoourfathersbroughtforthonthiscontinent,anewnation,conceivedinLiberty,anddedicatedtothepropositionthatallmenarecreatedequal. | |
Nowweareengagedinagreatcivilwar,testingwhetherthatnation,oranynationsoconceivedandsodedicated,canlongendure.Wearemetonagreatbattlefieldofthatwar.Wehavecometodedicateaportionofthatfield,asafinalrestingplaceforthosewhoheregavetheirlivesthatthatnationmightlive.Itisaltogetherfittingandproperthatweshoulddothis. | |
But,inalargersense,wecannotdedicate–wecannotconsecrate–wecannothallow–thisground.Thebravemen,livinganddead,whostruggledhere,haveconsecratedit,faraboveourpoorpowertoaddordetract.Theworldwilllittlenote,norlongrememberwhatwesayhere,butitcanneverforgetwhattheydidhere.Itisforustheliving,rather,tobededicatedheretotheunfinishedworkwhichtheywhofoughtherehavethusfarsonoblyadvanced.Itisratherforustobeherededicatedtothegreattaskremainingbeforeus–thatfromthesehonoreddeadwetakeincreaseddevotiontothatcauseforwhichtheygavethelastfullmeasureofdevotion–thatweherehighl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Programmer: Austin Applegate | |
Date modified: 1/28/13 Description: read a file and take the contents of it and clean it up and fix the error's and then write it to a new file. | |
Lab Number: 1 | |
Date Due: 2/6/13 | |
*/ | |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <vector> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
import java.lang.*; | |
import java.io.*; | |
public class vowles { | |
public static void main(String[] args) { | |
Scanner kb = new Scanner(System.in); | |
System.out.println("Please enter the name of the file: "); | |
String usersFile = kb.nextLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TestOldMacDonald { | |
/** | |
* @param args | |
*/ | |
public static void main(String[] args) { | |
// TODO Auto-generated method stub | |
OldMacDonald farmer = new OldMacDonald(); | |
Animal type = new Animal(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class OldMacDonald { | |
private String animal; | |
public void setAnimal(String newAnimal){ | |
animal = newAnimal; | |
} | |
public String getAnimal(){ | |
return animal; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Animal { | |
private String anim_type; | |
private String anim_sound; | |
public void setSound(String newSound){ | |
anim_sound = newSound; | |
} | |
public void setType(String newType){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KUStudent { | |
private String stud_fname; | |
private String stud_lname; | |
private String stud_kuid; | |
private String stud_dpt; | |
public void set_name(String fname, String lname){ | |
stud_fname = fname; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class KUStudentTest { | |
public static void main(String[] args){ | |
Scanner keyboard = new Scanner(System.in); | |
KUStudent name = new KUStudent(); | |
KUStudent info = new KUStudent(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KUStudent { | |
private String stud_fname; | |
private String stud_lname; | |
private String stud_kuid; | |
private String stud_dpt; | |
public void set_name(String fname, String lname){ | |
stud_fname = fname; |
NewerOlder