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
Hi- Mee | |
Bye-mee | |
Cat!-meeeeee! | |
(s)-e | |
Never-mee [and run away] | |
Food-b | |
Food!!!!-Beeeeeeeeēeeeee!!!! |
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
Hello there | |
How's the going | |
Okay | |
Never |
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
#Okay, first withe the extra stuff. On the first line one type in: 'print("What is your name?")' or anything about what their name is. | |
#On the second line make a variable called nm (can be something else) and designate it to the string; 'input("Name: ")'. Don't forget to put the = after the variable. | |
#On line three type in: 'print("Welcome to windows " + nm)'. the nm has to be what you called your variable on line 2. | |
#For the real thing. On line 4 make the variable called 'Use = ' and for it the string: 'input("Username: ")'. | |
#On line 5 type: 'while Use = "Jasiri:"'. The username can be different. | |
#On line 6 (make sure the begining of the line is tabed)type: 'Use = input("Incorrect username. PLease try again. ")'and don't forget the space at the end. | |
#On line 7 (// // // // // // // is not tabed)type: 'print("Loading")' | |
#See bottom for example on everything that is said here above. And Make Sure To See Part 2!!! |
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
In Construction |
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 HelloWorld | |
{ | |
public static void main(String []args){ | |
System.out.println("Jasiri is Awesome!"); | |
} | |
} |