0% found this document useful (0 votes)
8 views1 page

Java HelloWorld and Sum Example

The document contains two Java classes: HelloWorld and SumNumbers. The HelloWorld class prints 'Hello, World!' to the console, while the SumNumbers class calculates the sum of two integers, 7 and 5, and prints the result. Both classes include a main method for execution.

Uploaded by

den
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Java HelloWorld and Sum Example

The document contains two Java classes: HelloWorld and SumNumbers. The HelloWorld class prints 'Hello, World!' to the console, while the SumNumbers class calculates the sum of two integers, 7 and 5, and prints the result. Both classes include a main method for execution.

Uploaded by

den
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

public class HelloWorld {

public static void main(String[] args) {

[Link]("Hello, World!");

public class SumNumbers {

public static void main(String[] args) {

int a = 7;

int b = 5;

int sum = a + b;

[Link]("Sum: " + sum);

You might also like