forked from respawn91/testing2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddition. Data input-output.java
More file actions
77 lines (47 loc) · 1.47 KB
/
Addition. Data input-output.java
File metadata and controls
77 lines (47 loc) · 1.47 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Вывод println()
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello World");
String s = "Test";
System.out.println(s);
int a = 10;
System.out.println(a);
boolean b = true;
System.out.println(b);
int x = 10;
int y = 20;
System.out.println(x+y);
System.out.println(s + a);
}
}
// Вывод print()
public class HelloWorld{
public static void main(String []args){
System.out.print("Hello World\n");
System.out.print("Hello World\t");
System.out.print("Hello World");
}
}
// Вывод printf()
public class HelloWorld{
public static void main(String []args){
int a = 35;
int b = 42;
System.out.printf("%d + %d = %d\n", a, b, a + b);
}
}
// Ввод данных
import java.util.Scanner;
public class HelloWorld{
public static void main(String []args){
Scanner sc = new Scanner(System.in);
int x1 = sc.nextInt();
System.out.println(x1);
int x2 = sc.nextInt();
System.out.println(x2);
int x3 = sc.nextInt();
System.out.println(x3);
int x4 = sc.nextInt();
System.out.println(x4);
}
}