-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeginning.java
42 lines (33 loc) · 1.19 KB
/
Beginning.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
37
38
39
40
41
42
public class Week2Java {
public static void main(String[] args) {
System.out.println("hello world");
System.out.print("hey");
System.out.print("hey");
System.out.println(376980);
System.out.println("My name is Zehra");
System.out.println("My age is " + 19);
System.out.println(5+6);
System.out.println("6" +8);
System.out.println("4" +6+9); // java do not the arbitrary . if start with string value ,it behavior be string along the line.
System.out.println("4"+(6+9)); // Parentheses change the output.
// REVİEW İN WEEK 2
/*multiple
* comment
* line
*/
//this is aa single comment line
// main is where the program begins
System.out.println("Hello World");
//println prints and goes to the next line
System.out.println("2345"); // string value
System.out.println(2345); //int value
// escape char.
System.out.println("Hello World");
System.out.println("Hello");
System.out.println("World");
System.out.println("Hello \nWorld"); // "\n" goes to the next line
System.out.println("Ali\tAli\tAli"); // "\t" tab space
System.out.println("\"ozge\""); // output is "ozge"
System.out.println("\'ozge\'"); // output is 'ozge'
}
}