uk
Feedback
Tech Jargon - Decoded

Tech Jargon - Decoded

Відкрити в 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

Показати більше
2 015
Підписники
-224 години
-67 днів
-4130 день
Архів дописів
// 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"); } }