Skip to content

Commit 3f5ce1e

Browse files
committed
Links Added for files
1 parent a1e408a commit 3f5ce1e

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Below we have the explanation regarding the key elements in the above syntax :-
9090
- **Double** : This data type is used for storing the double precision values in the Source code.
9191
- **Char** : This data type is used for storing the character in any particular variable.
9292

93-
Note : Code is in the Basic.java file above in the Repo.
93+
Note : Proper code is given at [Basic.java](https://github.com/ackwolver335/Java-Coder/blob/main/Basic.java) Click to go on.
9494

9595
### Non-Primitive
9696

@@ -153,6 +153,8 @@ Syntax Code :
153153
datatype array_name = new datatype[length];
154154
```
155155

156+
Note : Proper Code is given at [npdata.java](https://github.com/ackwolver335/Java-Coder/blob/main/npdata.java) Click to go on it.
157+
156158
## Input/Output Methods :
157159

158160
Below we have some packages to be used while working with Inputs and Outputs :
@@ -251,7 +253,7 @@ class Sample{
251253
}
252254
```
253255

254-
Note : More explanation is available in the "Inout.java" Code File.
256+
Note : Proper Code is given on [Inout.java](https://github.com/ackwolver335/Java-Coder/blob/main/Inout.java) Click to go on it.
255257

256258
## Operators :
257259

@@ -271,7 +273,7 @@ Categories of Operators :
271273

272274
- **Bitwise Operator** : Operators constitute the basic building block of any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc.
273275

274-
Note : The Code examples are given in the code file named as "operatr.java" above.
276+
Note : Proper Code is given on [operatr.java](https://github.com/ackwolver335/Java-Coder/blob/main/operatr.java) Click to go on it.
275277

276278
## Variables in JAVA
277279

@@ -340,7 +342,7 @@ class Sample{
340342
}
341343
```
342344

343-
Note : Further Explanation is been given in the code file above with name "var1.java".
345+
Note : Proper code is given on [var1.java](https://github.com/ackwolver335/Java-Coder/blob/main/var1.java) Click to go on it.
344346

345347
## Wrapper Class
346348

@@ -407,7 +409,7 @@ class Sample{
407409
}
408410
```
409411

410-
Note : Proper Code will be given in the file name as "wrap.java".
412+
Note : Proper Code will be given in the file name as [wrap.java](https://github.com/ackwolver335/Java-Coder/blob/main/wrap.java) Click to go on it.
411413

412414
## Intro to Decision Making
413415

@@ -420,6 +422,8 @@ Decision Making in programming is similar to decision-making in real life. In pr
420422
- nested if : A nested if is an if statement that is the target of another if or else. Nested if statements mean an if statement inside an if statement. Yes, java allows us to nest if statements within if statements. i.e, we can place an if statement inside another if statement.
421423
- if else if ladder : Here, a user can decide among multiple options.The if statements are executed from the top down. As soon as one of the conditions controlling the if is true, the statement associated with that ‘if’ is executed, and the rest of the ladder is bypassed.
422424

425+
Note : Proper Code is given in the file [decision.java](https://github.com/ackwolver335/Java-Coder/blob/main/decision1.java) Click to go on it.
426+
423427
### Social Media Links :
424428

425429
- [Instagram Page](https://www.instagram.com/coding.needs/)

0 commit comments

Comments
 (0)