Skip to content

Commit 9b66720

Browse files
Update README.md
1 parent 406ecd6 commit 9b66720

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# Basic-Input-in-Java-simplified
22
Ever felt frustrated to create an object and input a string and then convert to the required type or experienced any issues while input. If so, this repo is just for you.
3+
4+
# Using
5+
Using this is fairly simple. You don't even have to create the object of the class. Use the static functions for the inputs by :
6+
```java
7+
int a = Input.inputInt();
8+
char c = Input.inputChar();
9+
double d = Input.inputDouble();
10+
...
11+
```
12+
13+
> Hope you felt this useful. :smile:

0 commit comments

Comments
 (0)