The First program. Let's print Hello World. With JAVA & C++

C++

 #include<iostream>

using namespace std;
int main(){
            cout<<" hello world ";
            return 0;


}

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


Comments

popular post

Design And Analysis Of Algorithm