Thursday, April 3, 2008

Programming



Right now, us students are working on the programming language JAVA.


Even though it basically looks like the same as C++, some codes applied to it are different:










// My First C++ Program
// February 2008
// Cecilia Abreu
//

#include
using namespace std;

void main () //void means that this function (program)
//returns nothing after it was run
{
cout << "By Cecilia Abreu" <<>








/*Program to display the traditional Hello World! message. */
/*Cecilia Abreu */
/*March 2008 */

public class HelloWorld {
public static void main (String args[])
{
System.out.println ("Hello World!");
System.out.println ("By: Cecilia Abreu");
}
}




No comments: