-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiceRoll.java
More file actions
82 lines (81 loc) · 2.22 KB
/
DiceRoll.java
File metadata and controls
82 lines (81 loc) · 2.22 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
78
79
80
81
82
import java.util.Scanner;
import java.util.Random;
public class DiceRoll {
//as per user imput diplay dots on dice
public static void main(String[]args){
//java dice roll program
Scanner sc = new Scanner(System.in);
Random rd=new Random();
int num;
int total=0;
System.out.print("Enter a number of dice to roll: ");
num=sc.nextInt();
if(num>0)
{
for(int i=0;i<num;i++)
{
int roll=rd.nextInt(1,7);
printdie(roll);
System.out.println("\nyou rolled: "+roll);
total+=roll;
}
System.out.print("\nTotal: "+total);
}
else
System.out.print("number of dice must be greater than 0");
}
static void printdie(int roll){
String dice1= """
-------
| |
| ● |
| |
-------
""";
String dice2= """
-------
| ● |
| |
| ● |
-------
""";
String dice3= """
-------
| ● |
| ● |
| ● |
-------
""";
String dice4= """
-------
|● ●|
| |
|● ●|
-------
""";
String dice5= """
-------
|● ●|
| ● |
|● ●|
-------
""";
String dice6= """
-------
|● ●|
|● ●|
|● ●|
-------
""";
switch(roll)
{
case 1->System.out.print(dice1);
case 2->System.out.print(dice2);
case 3->System.out.print(dice3);
case 4->System.out.print(dice4);
case 5->System.out.print(dice5);
case 6->System.out.print(dice6);
default->System.out.print("invalid choice");
}
}
}