Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package mattroseb8wk1;
- public class Day05A {
- public static void main(String[] args) {
- String txt1 = "Carrot";
- String txt2 = "Repolyo";
- System.out.println("----- version 1 -----");
- //pag mahaba yung i print ninyo wala masama mag maraming print
- System.out.print("The law of the instrument, law of the hammer, ");
- System.out.print("Maslow's hammer (or gavel), or golden hammer is ");
- System.out.print("a cognitive bias that involves an over-reliance on ");
- System.out.print("a familiar tool. Abraham Maslow wrote in 1966, \"If ");
- System.out.print("the only tool you have is a hammer, it is tempting ");
- System.out.println("to treat everything as if it were a nail\" ");
- System.out.println("----- version 2 -----");
- System.out.println("The law of the instrument, law of the hammer, "
- + "Maslow's hammer (or gavel), or golden hammer is "
- + "a cognitive bias that involves an over-reliance on "
- + "a familiar tool. Abraham Maslow wrote in 1966, \"If "
- + "the only tool you have is a hammer, it is tempting "
- + "to treat everything as if it were a nail\" ");
- System.out.println("----- version 3 -----");
- System.out.println("The law of the instrument, law of the hammer, Maslow's hammer (or gavel), or golden hammer is a cognitive bias that involves an over-reliance on a familiar tool. Abraham Maslow wrote in 1966, \"If the only tool you have is a hammer, it is tempting to treat everything as if it were a nail\" ");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment