এই নিবন্ধে, আমরা বুঝতে পারব কিভাবে একটি স্ট্রিং-এ অক্ষরের ফ্রিকোয়েন্সি খুঁজে বের করতে হয়। স্ট্রিং একটি ডেটাটাইপ যা এক বা একাধিক অক্ষর ধারণ করে এবং ডবল উদ্ধৃতি (“ ”) দিয়ে আবদ্ধ থাকে।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ধরুন আমাদের ইনপুট হল −
Input string: Java Programming is fun Input character: a
কাঙ্খিত আউটপুট হবে −
The frequency of a is 3
অ্যালগরিদম
Step 1 - START Step 2 - Declare a string namely input_string, a char namely input_character, an int value na,ely counter. Step 3 - Define the values. Step 4 - Iterate over the string using a for-loop, compare each letter of the string with the character provided. If the character matches, increment the counter value. Step 5 - Display the result Step 6 - Stop
উদাহরণ 1
এখানে, আমরা 'প্রধান' ফাংশনের অধীনে সমস্ত ক্রিয়াকলাপ একসাথে আবদ্ধ করি।
public class Demo { public static void main(String[] args) { String input_string = "Java Programming is fun"; System.out.println("The string is defined as: " +input_string); char input_character = 'a'; System.out.println("The character is defined as: " +input_character); int counter = 0; for(int i = 0; i < input_string.length(); i++) { if(input_character == input_string.charAt(i)) { ++counter; } } System.out.println("The frequency of " + input_character + " is " + counter ); } }
আউটপুট
The string is defined as: Java Programming is fun The character is defined as: a The frequency of a is 3
উদাহরণ 2
এখানে, আমরা ক্রিয়াকলাপগুলিকে অবজেক্ট ওরিয়েন্টেড প্রোগ্রামিং প্রদর্শনকারী ফাংশনে অন্তর্ভুক্ত করি৷
public class Demo { public static int get_count(String input_string,char input_character) { int counter = 0; for (int i = 0; i < input_string.length(); i++) { if (input_character == input_string.charAt(i)) { ++counter; } } return counter; } public static void main(String[] args) { String input_string = "Java Programming is fun"; System.out.println("The string is defined as: " +input_string); char input_character = 'a'; System.out.println("The character is defined as: " +input_character); int counter = get_count(input_string, input_character); System.out.println("The frequency of " + input_character + " is " + counter ); } }
আউটপুট
The string is defined as: Java Programming is fun The character is defined as: a The frequency of a is 3