কম্পিউটার

জাভাতে স্ট্রিং-এ লজিক্যাল অপারেটর


জাভা-

-এ স্ট্রিং-এ লজিক্যাল অপারেটর প্রয়োগ করা যাক

উদাহরণ

import java.io.*;
public class Demo{
   public static void main(String[] args){
      int a = 45, b = 32, c = 87, d = 1;
      System.out.println("The first variable is " + a);
      System.out.println("The second variable is = " + b);
      System.out.println("The third variable is = " + c);
      if ((a > b) && (b == c)){
         d = a + b + c;
         System.out.println("The sum is " + d);
      }
      else
         System.out.println("The conditions haven't been fulfilled");
   }
}

আউটপুট

The first variable is 45
The second variable is = 32
The third variable is = 87
The conditions haven't been fulfilled

ডেমো নামের একটি ক্লাসে প্রধান ফাংশন রয়েছে, যেখানে 4টি ভেরিয়েবল ঘোষণা করা হয়, এবং বিভিন্ন লজিক্যাল অপারেটর এই ভেরিয়েবলগুলি ব্যবহার করে প্রয়োগ করা হয় এবং সেগুলি কনসোলে ঘোষণা করা হয়।


  1. জাভাতে StringIndexOutOfBoundsException কি?

  2. জাভাতে স্ট্রিংকে ডাবলে রূপান্তর করুন

  3. জাভাতে চূড়ান্ত পরিবর্তনশীল

  4. পাইথনে স্ট্রিংয়ে লজিক্যাল অপারেটর?