-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd.java
134 lines (97 loc) · 3.04 KB
/
Add.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
import java.util.Scanner;
class Add{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
//reverse string
// String str=sc.nextLine();
// char ch;
// String nstr="";
// for(int i=0;i<str.length();i++){
// ch=str.charAt(i);
// nstr=ch+nstr;
// }
// System.out.println(nstr);
//reverse nummber
// int n=sc.nextInt();
// int r,rev=0;
// while (n>0) {
// r=n%10;
// rev=rev*10+r;
// n=n/10;
// }
// System.out.println("reverse num: "+rev);
//revers string
// StringBuilder sb=new StringBuilder("hello");
// System.out.println(sb.reverse());
//count the occi=urence
// String str=sc.next();
// char ch;
// int count=0;
// for(int i=0;i<str.length();i++){
// ch=str.charAt(i);
// if(ch=='s'){
// count++;
// }
// }
// System.out.println(count);
//find max occurence count + remove
// String str=sc.next();
// int len=str.length();
// int i,j,count=0;;
// char fstr=' ';
// char sstr;
// for(i=0;i<len;i++){
// fstr=str.charAt(i);
// for(j=i+1;j<len;j++){
// sstr=str.charAt(j);
// if(fstr==sstr){
// count++;
// }
// }
// }
// System.out.println(count+ " tmies : " + fstr);
// System.out.println(str.replace(fstr,' '));
//reverse check
// String str=sc.next();
// String nstr=" ";
// char ch;
// String t=str;
// for(int i=0;i<str.length();i++){
// ch=str.charAt(i);
// nstr=ch+nstr;
// }
// System.out.println(nstr);
// int day=sc.nextInt();
// switch (day) {
// case 1 :
// System.out.println("monday");
// break;
// case 2 :
// System.out.println("thusaday");
// break;
// case 3 :
// System.out.println("wensaday");
// break;
// case 4 :
// System.out.println("thrusday");
// break;
// case 5 :
// System.out.println("firday");
// break;
// case 6 :
// System.out.println("saturday");
// break;
// case 7 :
// System.out.println("sunday");
// break;
// default: System.out.println("Enter a valid day please");
// break;
// }
// String fruit = sc.next();
// switch(fruit){
// case "mango" -> System.out.println("mango is the king ");
// case "banana" ->System.out.println(" banana");
// default ->System.out.println("Enter a valid fruit ");
// }
}
}