Code Monkey home page Code Monkey logo

Comments (5)

Rishabh-Ethicalhacker avatar Rishabh-Ethicalhacker commented on August 22, 2024 1

Code :

public static void main(String[] args)
{
System.out.println("hello world! It's me malitha!");
}

Also calitalize the word String

from learning-java-2825378.

mgiita avatar mgiita commented on August 22, 2024

Hello!
3Line string[] → String
4Line  system → System
Uppercase and lowercase letters are judged separately.

from learning-java-2825378.

MarleySetwaba avatar MarleySetwaba commented on August 22, 2024

Wrong Syntax and Capitalize The String

Correct Code.

public static void main(String[] args)
{
system.out.println("hello world, it's me Matilda");
}

from learning-java-2825378.

Krishnacoder78 avatar Krishnacoder78 commented on August 22, 2024

Correct Code:

public class helloWorld{
public static void main(String[] args){
System.out.println(" hello world! It's me malitha!");
}
}

Java is case-sensitive ,so its important to pay attention to the casing of your variables, class names, and important statements. so here in your code capitalize the String-S and also the System-S.

from learning-java-2825378.

jeetu-g2-1 avatar jeetu-g2-1 commented on August 22, 2024

The errors in your Java program are due to some syntax and case sensitivity issues. Here's the corrected code:
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello world! It's me Malitha!"); } }
**Let's go over the corrections:

The class name should start with an uppercase letter. In this case, it should be "HelloWorld" instead of "helloWorld."

The main method should have a capital 'S' in "String" and proper capitalization.

The System class should also have a capital 'S,' and the println method should be called using System.out.println().

After making these changes, you should be able to compile and run your program without any errors.**

from learning-java-2825378.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.