-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathBackSlash.java
33 lines (31 loc) · 914 Bytes
/
BackSlash.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package uhuyy;
/**
*
* @author Uhuyy
* yang dapat saya jelaskan dari program sederhana tersebut adalah
* java merupakan bahasa pemprograman case sensitive, jadi harus teliti huruf besar kecil saat melakukan penulisan
*/
public class percobaankedua {
public static void main(String args[])
{
char bs = '\b';
char lf = '\n';
char tb = '\t';
System.out.print("Nama Buah : ");
// fungsi \b adalah menghapus 1 huruf dalam string
System.out.print("1. Manggis");
System.out.print(bs);
//fungsi \n yaitu untuk enter atau ganti baris
System.out.print(lf);
System.out.print("2. Semangka");
System.out.print("3. Durian");
//fungsi \t adalah untuk memberi jarak pada string
System.out.print(tb);
System.out.print("3. Salak");
}
}