HUO Computer Tips and tricks

Welcome to My Website. This website about Computer, Mobile and internet Tips and tricks,free Softwares and many more...

Welcome to My website

اسلام علیکم میرےویب سائٹ میں آنے کا بہت بہت شکریہ آپ اس ویب سائٹ میں مختلف کمپیوٹر،موبائل اور انٹرنٹ ٹپس اور ٹرکس سیکھ سکتے ہیں۔۔ ﷽ اVisit my new Website www.courseshub.org for free couses and other educational stuff

Monday 12 March 2018

```For Example in

Addition```




import java.util.Scanner;

class AddNumbers
{
public static void main(String args[])
{
int x, y, z;

System.out.println("Enter two integers to calculate their sum ");
Scanner in = new Scanner(System.in);

x = in.nextInt();
y = in.nextInt();
z = x + y;
System.out.println("Sum of entered integers = "+z);
}
}



🔽🔽🔽🔽Output🔽🔽🔽🔽🔽
Enter two integers to calculate their sum
4
5
Sum of entered integers = 9

No comments:

Post a Comment