We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da1876 commit 98c8bccCopy full SHA for 98c8bcc
RandomNumber.java
@@ -0,0 +1,23 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package com.mycompany.worksheet1;
7
+
8
+/**
9
+ *
10
+ * @author Shanmuga Priya M
11
12
+public class randomno {
13
14
+ /**
15
+ * @param args the command line arguments
16
17
+ public static void main(String[] args) {
18
+ int a= (int)((Math.random()*10));
19
+ System.out.println(a);
20
+ // TODO code application logic here
21
+ }
22
23
+}
0 commit comments