complete the story
Attachments:
Answers
Answered by
3
Answer:
So Then what happens is Rohan tells everything to the red man in the last pic and the red man said him " You have really done a good job helping others is a good sign "
Explanation:
PLS MARK ME AS A BRAINLIST
Answered by
3
Sum of Two Numbers Using Command Line Arguments in Java
public class SumOfNumbers4.
{
public static void main(String args[])
{
int x = Integer.parseInt(args[0]); //first arguments.
int y = Integer.parseInt(args[1]); //second arguments.
int sum = x + y;
System.out.println("The sum of x and y is: " +sum);
Similar questions