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");
}
}
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
