es
Feedback
Tech Jargon - Decoded

Tech Jargon - Decoded

Ir al canal en 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

Mostrar más
2 015
Suscriptores
-224 horas
-67 días
-4130 días
Archivo de publicaciones
// 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"); } }