এই প্রবন্ধে, আমরা বুঝব কিভাবে জোড় দৈর্ঘ্যের শব্দগুলো প্রিন্ট করতে হয়। স্ট্রিং একটি ডেটাটাইপ যা এক বা একাধিক অক্ষর ধারণ করে এবং ডবল উদ্ধৃতি (“”) দিয়ে আবদ্ধ। চর হল একটি ডেটাটাইপ যাতে একটি বর্ণমালা বা একটি পূর্ণসংখ্যা বা একটি বিশেষ অক্ষর থাকে৷
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ধরুন আমাদের ইনপুট হল −
Input string: Java Programming are cool
কাঙ্খিত আউটপুট হবে −
The words with even lengths are: Java cool
অ্যালগরিদম
Step 1 - START Step 2 - Declare a string namely input_string. Step 3 - Define the values. Step 4 - Iterate over the string usinf a for-loop, compute word.length() modulus of 2 for each word to check if the length gets completely divided by 2. Store the words. Step 5 - Display the result Step 6 - Stop
উদাহরণ 1
এখানে, আমরা 'প্রধান' ফাংশনের অধীনে সমস্ত ক্রিয়াকলাপ একসাথে আবদ্ধ করি।
public class EvenLengths { public static void main(String[] args) { String input_string = "Java Programming are cool"; System.out.println("The string is defined as: " +input_string); System.out.println("\nThe words with even lengths are: "); for (String word : input_string.split(" ")) if (word.length() % 2 == 0) System.out.println(word); } }
আউটপুট
The string is defined as: Java Programming are cool The words with even lengths are: Java cool
উদাহরণ 2
এখানে, আমরা ক্রিয়াকলাপগুলিকে অবজেক্ট-ওরিয়েন্টেড প্রোগ্রামিং প্রদর্শনকারী ফাংশনে অন্তর্ভুক্ত করি।
public class EvenLengths { public static void printWords(String input_string) { System.out.println("\nThe words with even lengths are: "); for (String word : input_string.split(" ")) if (word.length() % 2 == 0) System.out.println(word); } public static void main(String[] args) { String input_string = "Java Programming are cool"; System.out.println("The string is defined as: " +input_string); printWords(input_string); } }
আউটপুট
The string is defined as: Java Programming are cool The words with even lengths are: Java cool