ch
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"); } }