-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek5.java
36 lines (23 loc) · 840 Bytes
/
week5.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
35
36
package WEEK5;
import java.util.Scanner;
// MİDTERM ; DEEC. 10th at 18:30 -19:20
public class week5 {
public static void main(String[] args) {
int number =10;
Scanner sc = new Scanner (System.in);
// get two number from the user, give the sum and avg as an output
System.out.println("give me a number");
// if we write the print,integer will come to the near the line.
int n1 = sc.nextInt();
// if we input the two or three values;
double n3 = sc.nextDouble();
System.out.println("give me another number" );
double n2= sc.nextInt();
double sum = n1+n2;
double average= sum / 2;
System.out.println("sum = "+ sum );
//System.out.println( "The sum is= " +(n1+ n2));
System.out.println("average= "+average);
// +, -, /, *, % (modulator)
}
}