-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJmaster.java
More file actions
58 lines (56 loc) · 1.16 KB
/
Jmaster.java
File metadata and controls
58 lines (56 loc) · 1.16 KB
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
// For ur Kind Info, Remove comments to execute Specific Blocks of Command...
/*
Day 1
Github Intro
/*
Day 2
Java Intro
/*
Day 3
Java Implementation
*//*
public class Jmaster
{
public static void main(String args[])
{
int a=1;
int b=2, c=3, d=4;
float e=17645.156475f;
long f=10000000000l;
double g=2233445566d;
System.out.println(g);
}
}
*/
/*
// Day4
public class Jmaster
{
public static void main(String args[])
{
int h=1__________3;
char a=66; // to determine ascii value
char b='6';
char c='A';
boolean d=true;
boolean e=(1==0);
String f= "Shrijayanth";
String l= "S";
String fl=f+' '+l;
String g= "\"Shri is doin\" \n java class\\training, under abi\t";
String u= "To Infinity and Beyond".toUpperCase();
String j= "To Infinity and Beyond".toLowerCase();
String k= "1,2,3,4,5"; // In output mention .length method for execution
int i= "12345".length();
if(e)
{
System.out.println("true");
}
System.out.println(k.length());
}
}
*/
// Day 5
public class Jmaster
{
public static void main(String args[])