en
Feedback
Tech Jargon - Decoded

Tech Jargon - Decoded

Open in Telegram

Confused by tech terms? Donโ€™t worry, weโ€™ve got you ๐Ÿค We make things simple, one concept at a time. Learn daily Easy & clear Turn Confusion into clarity. #tech #it #softwareengineer #cs #development

Show more
2 015
Subscribers
-224 hours
-67 days
-4130 days
Posts Archive
// Program for sem of two numbers by reading values from user import java.lang.*; import java.util.Scanner; public class Sum { public static void main(String args[]) { Scanner s=new Scanner(System.in); int a,b,c; System.out.print("Enter any two numbers:"); a=s.nextInt(); b=s.nextInt(); c=a+b; System.out.println("Sum of "+a+" and "+b+" is "+c); } }

// Program to add two numbers import java.lang.*; public class Add { public static void main(String args[]) { int a=50; int b=20; System.out.println(a+"+"+b+"="+(a+b)); } }

// Program to print Hello World import java.lang.*; public class MyFirst{ public static void main(String args[]){ System.out.println("Hello World"); } }