forked from blackbird71SR/Code-Portfolios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSanchitJain_Java
More file actions
47 lines (40 loc) · 1.18 KB
/
SanchitJain_Java
File metadata and controls
47 lines (40 loc) · 1.18 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
import java.util.*;
import java.lang.*;
import java.io.*;
class Portfolio
{
public static void main (String[] args) throws java.lang.Exception
{
String Name=" Sanchit Jain";
String description="Pre-final year Engineering student at NIT DELHI , pursuing ECE ";
System.out.println();
String[] skills=new String[3];
skills[0]="Data structures And Algorithms";
skills[1]="Web development Full Stack";
skills[2]="Team Leadership";
String[] interests=new String[4];
interests[0]="Football And Cricket";
interests[1]="Photography";
interests[2]="Gaming";
interests[3]="Travelling";
String[] languages=new String[3];
languages[0]="Hindi";
languages[1]="English";
languages[2]="German";
System.out.println(Name);
System.out.println(description);
System.out.println();
System.out.println(" SKILLS");
for (int i=0;i<3 ;i++ ){
System.out.println(skills[i]);
}
System.out.println(" INTERETS");
for (int i=0;i<4 ;i++ ){
System.out.println(interests[i]);
}
System.out.println(" LANGUAGES KNOWN");
for (int i=0;i<3 ;i++ ){
System.out.println(languages[i]);
}
}
}