-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakeAvg.java
34 lines (32 loc) · 934 Bytes
/
MakeAvg.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import java.util.Scanner;
class MakeAvg
{
public static void main (String[] args)
{
Scanner read = new Scanner(System.in);
System.out.println("Enter the number of cases t: ");
int t = read.nextInt();
for(int i=0; i<t; i++)
{
System.out.println("Enter the number A: ");
int A = read.nextInt();
System.out.println("Enter the number C: ");
int C = read.nextInt();
// Use your sub-components below this line to solve the problem
if(A%2==0 && C%2==0)
{
int B=(A+C)/2;
System.out.println("Avg of A and C is " +B);
}
else if (A%2!=0 && C%2!=0)
{
int B=(A+C)/2;
System.out.println("Avg of A and C is " +B);
}
else
{
System.out.println(-1);
}
}
}
}