Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #36.9K
Ranked #3K
~578 People Reached
About Me

Well, I am fairly close to graduating university with a B.Sc in Computer Science, so I have some programming skills. Of course, I've quickly learned that school can only teach so much and I certainly still have much to learn. As for what I'm familiar…

Interests
Hockey, Lacrosse, Snowboarding, Guitar, Books
Favorite Tags
Member Avatar for Jev181

I am new to web design and development so please bear with me. I built a site and the background of the whole site is black. I have a table set up with 100% height and width. My objective is to have a background (the solid black color) that re …

Member Avatar for Jev181
0
110
Member Avatar for kuay

[code] package caesar; import java.util.Scanner; public class Caesar { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int key = scan.nextInt(); String str = scan.next(); String encrypted = encrypt(str, key); System.out.println(encrypted); } CAUSES public static String encrypt(String str, int key) { String encrypted = " "; for(int …

Member Avatar for kuay
-1
352
Member Avatar for ROTC89

ok my assignment is to make a login form that will accept a user name and password. if the user name and password don't match it doesnt do anything, but if it does it takes it to a website. my only problem is when i go to run it i …

Member Avatar for Gori
0
116