-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRevision1.java
293 lines (238 loc) · 5.31 KB
/
Revision1.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*import java.util.*;
class Shop
{
private String name;
private int nsold;
public Shop(String s,int ns)
{
this.name=s;
this.nsold=ns;
}
public String getName(){
return name;
}
public int getItemSold()
{
return sold;
}
}
public class Maptest
{
public static void printShopName(ArrayList<Shop>sList)
{
Map<String,Integer>m=new LinkedHashMap<String,Integer>();
String shop="";
int sold=0;
}
}
*/
/*class ContactEmployee extends Employee{
final private static double hourlyPay=100;
private int contactHour;
double salary;
public ContactEmployee(String name,long adhar,int contactHour)
{
super(name,adhar,contactHour*hourlyPay);
this.contactHour=contactHour;
}
public void print()
{
super.print();
}
}
*/
/*import java.util.*;
class Calculator
{
public void sum(double a, double b)
{
System.out.println(a+b);
}
public void subtraction(double a,double b)
{
System.out.println(a-b);
}
public void multiply(double a,double b)
{
System.out.println(a*b);
}
public void division(double a,double b)
{
System.out.println(a/b);
}
}
class Updated calculator extends Calculator
{
public void remainder(double a,double b)
{
System.out.println(a%b);
}
}
public class CalculatorCheck
{
public static void main(STring args[])
{
Scanner sc = new Scanner(System.in);
double n1=sc.nextDouble();
double n2=sc.nextDouble();
Calculator c=new Calculator();
c.sum(n1,n2);
UpdatedCalculator uc=new UpdatedCalculator();
uc.remainder(n1,n2);
}
}
*/
/*import java.util.*;
class Employee
{
String eid;
String ename;
String eprojects[];
public Employee(String id,String name,String[] project)
{
this.eid=id;
this.ename=name;
this.eprojects=project;
}
public Employee(Employee e)
{
this.eid=e.eid;
this.ename=e.ename;
this.eprojects=e.eprojects;
}
public void display()
{
System.out.println(eid);
System.out.println(ename);
System.out.println("projects :");
eprojects[0]="P001";
for(int i=0;i<eprojects.length;i++)
{
System.out.println(eprojects[i]+":");
}
}
public void mutator()
{
this.ename="Mr"+this,ename;
this.eprojects[0]=null;
}
}
public class Fclass{
public static void main (String args[])
{
Scanner sc=new Scanner(System.in);
String project[]={"p001","p002""p003"};
String id=sc.nextLine();
String name=sc.nextLine();
Employee e1=new Employee(id,name,project);
Employee e1=new Employee(e1);
e1.mutator();
e2.display();
}
}
import java.util.*;class Employee{
String ename;
String eid;
String edept;
public Employee()
{
ename="guest";
}
public Employee(String name,String dept,String id)
{
this.ename=name;
this.edept=dept;
this.eid=id;
}
public void copyDept(Employee e)
{
this.edept=e.edept;
}
public void displayDetails()
{
System.out.println(ename);
System.out.println(eid);
System.out.println(edept);
}
}
public class Fclass{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
Employee e1=new Employee();
String name=sc.nextLine();
String id=sc.nextLine();
Employee e2=new Employee();
e1.copyDept(e2);
e1.displayDetails();
}
}
import java.util.*;
public class SeriesSum{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int sum=0;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
sum+=Math.pow(j,2);
}
}
System.out.println(sum);
}
}
/*import java.util.*;
class Fclass{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
String s1=sc.next();
evenDisplay(s1);
}
public static void evenDisplay(String s)
{
int l=s.length();
for(int i=0;i<l;i+=2)
{
System.out.println(s.charAt(i)); //////////////
}
}
}
*/
/*import java.util.*;
class Rectangle
{
int w;
int h;
public void setw(int a)
{
w=a;
}
public void seth(int b)
{
h=b;
}
public int area()
{
int a=w*h;
return(a);
}
}
public class revision1
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int w=Integer.parseint(sc.nextLine());
int h=Integer.parseInt(sc.nextLine());
Rectangle r=new Rectangle();
r.setw(w);
r.seth(h);
int area=r.area();
System.out.println(area);
}
}
*/