Saturday, July 22, 2023

JAVA - COMMANAD LINE - EXAMPLE 1

 public class CommandLine1 {

    public static void main(String[] args) {
        int a,b,c;
        a=Integer.parseInt(args[0]);
        b=Integer.parseInt(args[1]);
        c=a+b;
        System.out.println("Sum is="+c);
    }
}

No comments:

Post a Comment

100 Research Ideas on AI 💡

🧠 Machine Learning and Deep Learning (1–20) * 1. Transfer learning: Teaching an AI a task (like recognizing cars) and reusing that knowledg...