-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring3.java
More file actions
41 lines (39 loc) · 1.18 KB
/
Copy pathstring3.java
File metadata and controls
41 lines (39 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
<<<<<<< HEAD
import java.util.Scanner;
public class string3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the Stirng: ");
String s = sc.nextLine();
System.out.println("Enter the character that needs to find the count");
String finds = sc.next();
int count = 0;
for(int i = 0; i < s.length(); i++) {
if(s.charAt(i) == finds.charAt(0)) {
count += 1;
}
}
System.out.println(count);
sc.close();
}
}
=======
import java.util.Scanner;
public class string3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the Stirng: ");
String s = sc.nextLine();
System.out.println("Enter the character that needs to find the count");
String finds = sc.next();
int count = 0;
for(int i = 0; i < s.length(); i++) {
if(s.charAt(i) == finds.charAt(0)) {
count += 1;
}
}
System.out.println(count);
sc.close();
}
}
>>>>>>> 4ecfcb4dd95708059f7b96dba0304ec457a84060