-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava4.java
226 lines (200 loc) · 5.27 KB
/
java4.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/* THE ARRAY LIST CLASS */
syntax for array LIST class
/*
import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
ArrayList<String> a=new ArrayList<String>();
for(int i=0;i<5;i++)
{
String x;
x=in.next();
a.add(x);
}
out.println(a.size());
for(int i=0;i<5;i++)
{
out.print(a[i]);
}
}
}
*/
/* THIS WILL GIVE ME SORTED ARRAY
import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
TreeSet<Integer> a=new TreeSet<Integer>();
for(int i=0;i<5;i++)
{
int x;
x=in.nextInt();
a.add(x);
}
out.println(a);
}
}
*/
/* ARRAYLIST */
/*import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
ArrayList<String> a=new ArrayList<String>();
for(int i=0;i<5;i++)
{
String x;
x=in.next();
a.add(x);
}
out.print(a);
// only single time print it will give me whole set
}
}
*/
/*import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
Vector<Integer> a=new Vector<Integer>(6);
for(int i=0;i<5;i++)
{ int x;
x=in.nextInt();
a.addElement(x);
}
/*Iterator<Integer>aItr=a.iterator();
while(aItr.hasNext())
{
out.print(aItr.next()+" ");
}
for(int i:a)
{
out.print(i+" ");
}
out.print(a[0]);/// WHY IS THIS NOT WORKING IN VECTOR
}
}
*/
/* THIS IS THE BASIC HASH SET MAP
IT SOTERD THE ALL VALUE WITH ITS VALUE
import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
int n=in.nextInt();
HashMap<String,Integer>mp=new HashMap<String,Integer >();
for(int i=0;i<n;i++)
{
String x;
int y;
x=in.next();
y=in.nextInt();
mp.put(x,y);
}
Set<Map.Entry<String,Integer> >set=mp.entrySet();
// DISPLAY METHOD
for(Map.Entry<String,Integer> it:set)
{
out.println(it.getKey()+" "+it.getValue());
}
///// IN MAP getkey is used to get the first element in map & getvalue is used to get the second value
IMP ponits
int p=mp.get(2);
out.print(p);
/* IN WHICH GET IS USED TO FIND THE VALUE OF KEY */ :)
}
}
/*
/*
QUESTION ...
1. WHAT IS THE DIFFERENCE B/w HASHMAP AND TREEMAP
/*
import java.util.*;
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
Vector<Integer> a=new Vector<Integer>(6);
for(int i=0;i<5;i++)
{ int x;
x=in.nextInt();
a.addElement(x);
}
out.print(a.get(0));
// get fxn is used to dispaly the value of vector>
}
}
/* HOW TO USE PAIR IN JAVA */
import java.util.*;
import javafx.util.Pair;///for pair i declared a special package here javafx.util.Pair
/// why i use javafx ... :(
import static java.lang.System.out;
public class frr
{
public static void main(String v[])
{
Scanner in=new Scanner(System.in);
ArrayList <Pair <String,Integer> > a =
new ArrayList <Pair <String,Integer> > ();
for(int i=0;i<3;i++)
{ String x;
int y;
x=in.next();
y=in.nextInt();
a.add(new Pair <String,Integer> (x, y));
}
out.print(a.get(0));
/// how to get its first & second element of pair
}
}
/*
IN STRING I USE S.LENGTH() TO FIND THE LENGTH OF THE STRING
*/
/* how i write 1000006 in short form */
/*
SHORT FORM TO WRITE ..SYSTEM.OUT TO
sout & tab
*/
/*
connection to intract with data base ...-----> this is code for connection to database
package javaapplication5;
import java.sql.*;
public class JavaApplication5 {
public static void main(String[] args) {
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","");
Statement stmt=con.createStatement();
ResultSet rs=stmt.executeQuery("select *from seit where marks >60");
while(rs.next())
System.out.println(rs.getInt(1)+" "+rs.getString(2));
con.close();
}
catch(Exception e)
{System.out.print(e);
}
}
float d=1e6f;
if((int)d==1000000)
out.printf("%.0f",d);
how to print 10^6
}
*/