কম্পিউটার

একটি ফাইলে লাইনের সংখ্যা গণনা করার জন্য C# প্রোগ্রাম


প্রথমত, StreamWriter ক্লাস ব্যবহার করে একটি ফাইল তৈরি করুন এবং এতে বিষয়বস্তু যোগ করুন -

using (StreamWriter sw = new StreamWriter("hello.txt")) {
   sw.WriteLine("This is demo line 1");
   sw.WriteLine("This is demo line 2");
   sw.WriteLine("This is demo line 3");
}

এখন সমস্ত লাইন পড়তে ReadAllLines() পদ্ধতি ব্যবহার করুন। এর সাথে, দৈর্ঘ্যের বৈশিষ্ট্যটি লাইনের সংখ্যা −

পেতে ব্যবহার করতে হবে
int count = File.ReadAllLines("hello.txt").Length;

এখানে সম্পূর্ণ কোড −

উদাহরণ

using System;
using System.Collections.Generic;
using System.IO;
public class Program {
   public static void Main() {
      using (StreamWriter sw = new StreamWriter("hello.txt")) {
         sw.WriteLine("This is demo line 1");
         sw.WriteLine("This is demo line 2");
         sw.WriteLine("This is demo line 3");
      }
      int count = File.ReadAllLines("hello.txt").Length;
      Console.WriteLine("Number of lines: "+count);
   }
}

আউটপুট

Number of lines: 3

  1. জাভাতে সংখ্যা গণনা করার জন্য একটি প্রোগ্রাম কীভাবে বাস্তবায়ন করবেন?

  2. একটি প্রদত্ত সংখ্যা N-এ অঙ্কের সংখ্যা গণনা করতে পাইথনে একটি প্রোগ্রাম লিখুন

  3. পাইথনে ম্যাট্রিক্সে বেষ্টিত দ্বীপের সংখ্যা গণনা করার প্রোগ্রাম

  4. পাইথনে প্রদত্ত সংখ্যায় বিট 1-এর সংখ্যা খুঁজে বের করার প্রোগ্রাম