Jump to content
EN
Play

Forum

programming


 Share

Recommended Posts

go to a a School that is for computer programming.

join a Room of lower ranks and start on them.

I found an online school called codecademy.  What would your rating be for this kind of stuff?

 

My problem is not about learning programming,

but to get ideas for interesting projects to work upon.

 

So, if you have any, then post them here, will you !

 

smile

Yeah, I would have the same problem if i knew more code...

Edited by Isenfire

Share this post


Link to post
Share on other sites

I need major help for coding.  <_< :angry: Anyone have suggestions?

I am learning code on codecademy.com

I use Notepad++ for writing what little I have written down.

 

P.S. You don't have to be a major to help :)

Edited by Isenfire

Share this post


Link to post
Share on other sites

I need major help for coding.  <_< :angry: Anyone have suggestions?

I am learning code on codecademy.com

I use Notepad++ for writing what little I have written down.

 

P.S. You don't have to be a major to help :)

what coding? cause codeacademy is for the people that are trying to learn so basics they dont even get the full spectrum.

Share this post


Link to post
Share on other sites

heres some food for thought.

 

 

 

 

C#

Console.right "hello world"; 

 

Java

 

public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}

 

python 

print "Hello World!";

 

PHP

 

<?PHP 

 

Print "hello world";

 

?>

 

C++

 

for(;;)
{
cout << "Hello World! ";
}}

 

or

 

int main()
{
std::cout << "Hello, world!\n";
}

 

Javascript and HTML 

 

<html>
<head>
<title></title>

<script type="text/javascript">

function HelloWorld()
{
alert ("Hello World!");
}

</script>

</head>
<body>

</body>
</html>

 

 

 

Share this post


Link to post
Share on other sites

what coding? cause Codecademy is for the people that are trying to learn so basics they don't even get the full spectrum.

I finished the JavaScript course and I agree with you.  Could you suggest a better site?

Share this post


Link to post
Share on other sites

heres some food for thought.

 

 

 

 

C#

Console.right "hello world"; 

 

Java

 

public class HelloWorld {

public static void main(String[] args) {

System.out.println("Hello, World");

}

}

 

python 

print "Hello World!";

 

PHP

 

<?PHP 

 

Print "hello world";

 

?>

 

C++

 

for(; ;)

{

cout << "Hello World! ";

}}

 

or

 

int main()

{

std::cout << "Hello, world!\n";

}

 

Javascript and HTML 

 

<html>

<head>

<title></title>

 

<script type="text/javascript">

 

function HelloWorld()

{

alert ("Hello World!");

}

 

</script>

 

</head>

<body>

 

</body>

</html>

 

 

 

I could do the JavaScript and HTML one and the Python one...

Don't know any others.

Share this post


Link to post
Share on other sites

Visual Studio 2015 Realised!!!!
WooHooo!

Visual Studio 2015 Professional (download) (MSDN VL KEY: HMGNV-WCYXV-X7G9W-YCX63-B98R2 )

Edited by mbort

Share this post


Link to post
Share on other sites

Just made a nice little text based calculator.. how is it? :D

 

import java.util.Scanner;

public class Calculator {
public static Scanner scan = new Scanner(System.in);
public static double result[] = new double[4];
public static double number1;
public static double number2;

public static void main(String[] args) {
boolean doAgain;
System.out.println("Please enter first number");
number1 = scan.nextDouble();
System.out.println("Please enter second number");
number2 = scan.nextDouble();

do {
doCalcs(); // Ask to do Again
System.out.println("Would you like to do it again? (Please say in true or false.)");
doAgain = scan.nextBoolean();
if (doAgain == true) {
System.out.println("Please enter first number");
number1 = scan.nextDouble();
System.out.println("Please enter second number");
number2 = scan.nextDouble();
}
} while (doAgain);
System.out.println("Thanks for using! Goodbye!");

}

static void doCalcs() {
boolean doAagain;
System.out.println("Your first number is " + number1 + " and second number is " + number2);
System.out.println("Here are the Addition, Subtraction, Multiplication and Dvision of them respectively");
result[0] = number1 + number2;
System.out.println("|Addition -> " + result[0]);
System.out.println();
result[1] = number1 - number2;
System.out.println("Subtraction -> " + result[1]);
System.out.println();
result[2] = number1 * number2;
System.out.println("Multiplication -> " + result[2]);
System.out.println();
result[3] = number1 / number2;
System.out.println("Division -> " + result[3]);
System.out.println();
}

}

 

PS-i used some help from my other program (guess the number game) which i made with a tutorial.

PSS- i just does basic calculations between two numbers..

PSSS- i am veeeeeery new to java (my first language too)  so dont call me nub :P

Edited by vanshajwore

Share this post


Link to post
Share on other sites

 Share

×
×
  • Create New...