![]() |
[Java] My Progress - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Java, JVM, & JRE (https://sinister.ly/Forum-Java-JVM-JRE) +--- Thread: [Java] My Progress (/Thread-Java-My-Progress) Pages:
1
2
|
[Java] My Progress - LightX - 02-25-2013 Hello HC, I am just posting this to 1: show off my progress that I make in java, and 2: so other beginners can read it and better themselves. I will post the objective/assignment that I have completed, and the source for it. This will be updated when I have made new programs. So here it goes. My first program as you all probably saw was a super simple CLI calculator. Here is the code for it: Code: import java.util.Scanner; This next one is a program that takes your input and returns it to you until you enter "exit". Code: Code: import java.util.Scanner; This one is another simple program that takes a number input from you and counts from 0 to your number. Code: import java.util.Scanner; This program takes the users input and makes a staircase with the number of steps as the user inputed. Code: import java.util.Scanner; Here is a program that encodes your message (By encoding I mean moving the character up one step in the ASCII chart.) Code: import java.util.Scanner; This one just takes the input (age) of the user, and the input (age) of the computer and tells you how much older you/it are compared to the other. Code: import java.util.Scanner; Computer price depreciation - This program basicly takes your input on how much the computer costs new, your input on how old it is, and your rate of depreciation and calculates how much it is worth now. Code: import java.util.Scanner; Ask the user for a string - The program shall sum up the ASCII values of each character of the input string and print the sum. Code: import java.util.Scanner; RE: [Java] My Progress - Ex094 - 02-25-2013 Practice makes perfect ![]() RE: [Java] My Progress - LightX - 02-26-2013 Update: Added the stair program. RE: [Java] My Progress - LightX - 02-27-2013 Updated with the "encoder" RE: [Java] My Progress - Deque - 02-27-2013 You are doing a lot. That will definitely help you getting better. It is cool that you come up with your own assignments. RE: [Java] My Progress - IDetox - 02-27-2013 Good job LightX! Keep going mate! RE: [Java] My Progress - LightX - 02-27-2013 (02-27-2013, 11:12 AM)IDetox Wrote: Good job LightX! Keep going mate! Thanks! ![]() ![]() RE: [Java] My Progress - virusreloaded - 05-03-2013 I like it too .. because it needs enormous amount of coding ![]() Java <3 <3 <3 RE: [Java] My Progress - Fredjes - 05-03-2013 Good job. I like it how you challenge yourself with these little programs, keep it up and it will pay off! RE: [Java] My Progress - Fredjes - 05-03-2013 Good job. I like it how you challenge yourself with these little programs, keep it up and it will pay off! |