Posts

Image
Bank Management System With CPP About This Project:- Bank Management System is based on a concept of recording customer’s account details. Here the user can perform all the tasks like creating an account, deposit amount, add money to account ,check balance, There’s no login system for this project. All the main features for banking system are set in this project. ব্যাঙ্ক ম্যানেজমেন্ট সিস্টেম গ্রাহকের অ্যাকাউন্টের বিবরণ রেকর্ড করার ধারণার উপর ভিত্তি করে।  এখানে ব্যবহারকারী একটি অ্যাকাউন্ট তৈরি, জমার পরিমাণ, অর্থ উত্তোলন, ব্যালেন্স চেক, সমস্ত অ্যাকাউন্ট হোল্ডারদের বিশদ দেখতে, একটি অ্যাকাউন্ট বন্ধ এবং একটি অ্যাকাউন্ট সংশোধন করার মতো সমস্ত কাজ সম্পাদন করতে পারে।  এই Project জন্য কোন লগইন সিস্টেম নেই.  ব্যাংকিং সিস্টেমের জন্য সমস্ত প্রধান বৈশিষ্ট্য এই Project সেট করা আছে. Features:- 1)create account 2)add money to account 3)deposit money from account 4)add money mycash from bank account Talking about above this features of the Bank Management System, a user can create an ac...
Image
Encapsulations With  CPP Encapsulations:- Encapsulation is defined binding data and functions method We can simply say encapsulation is binding data or information (এনক্যাপসুলেশন সংজ্ঞায়িত করা হয় বাইন্ডিং ডেটা এবং ফাংশন পদ্ধতি আমরা সহজভাবে বলতে পারি এনক্যাপসুলেশন হল ডাটা বা তথ্যকে বাঁধাই করা,এক কথায় সকাল বেলার দাদার প্রশান্তি Shargel 20mg😆)  Example #include<bits/stdc++.h> using namespace std; class Student { public: int x; private: int y; protected: int z; }; int main() { Student rahim; rahim.x=10; rahim.y=10; rahim.z=10; rahim.sayhi(); } This example output is error this is protect or private data not a public data
Image
Diagonal matrix and Scalar matrix With CPP Diagonal: A square matrix is said to be a diagonal matrix if the elements of the matrix  the main diagonal are zero. A square null matrix is also a diagonal matrix whose  main diagonal elements are zero. (প্রধান ম্যাট্রিক্স ছাড়া যখন অন্য মেট্রিক্স গুলা শূন্য হয় তাকে কর্ণ মেট্রিক্স বলে) Example:- #include<bits/stdc++.h> using namespace std; int main() {     int row,col,i,j;     cin>>row>>col;     int a[row][col];     for(int i=0;i<row;i++)     {         for(int j=0;j<col;j++)         {             cin>>a[i][j];         }     }     if(row!=col)     {         cout<<"NO"<<endl;         return 0;     }     for(int i=0;i<row;i++)     {       ...
                                                                                        Petya and Strings time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings   lexicographically . The letters' case does not matter, that is an uppercase letter is considered equivalent to the corresponding lowercase letter. Help Petya perform the comparison. Input Each of the first two lines contains a bought string. The strings' lengths range from  1  to  100  inclusive. It is guaranteed that the strings are ...
                                                                                      Beautiful Matrix time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output You've got a  5 × 5  matrix, consisting of  24  zeroes and a single number one. Let's index the matrix rows by numbers from  1  to  5  from top to bottom, let's index the matrix columns by numbers from  1  to  5  from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: Swap two neighboring matrix rows, that is, rows with indexes  i  and  i  + 1  for some integer  i   (1 ≤  i  < 5) . Swap two neighboring matrix columns, ...
                                                                                                    Bit++ time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output The classic programming language of Bitland is Bit++. This language is so peculiar and complicated. The language is that peculiar as it has exactly one variable, called  x . Also, there are two operations: Operation  ++  increases the value of variable  x  by 1. Operation  --  decreases the value of variable  x  by 1. A statement in language Bit++ is a sequence, consisting of exactly one operation and one variable  x . The statement is written without spaces, that is, it can only c...
Image
  Array and String with CPP Array:- An array in C or CPP is a collection memory locations and elements can be accessed randomly  using an array location. They are used to store similar types of elements as in the data type must be the same for all elements.  The elements of the array are located side by side in Memory. We can use  third parentheses[] for array size একই ধরনে র ডেটা টাইপের গুচ্ছকে অ্যারে (Array) বলে । #Sug-URL :- কম্পিউটার প্রোগ্রামিং বই: [প্রোগ্রামিং বইঃ অধ্যায় ছয়] অ্যারে। (subeen.com) We have two types of arrays : 1)One Dimensional Array 2)Multi Dimensional Array Simple Example:-                                                                                               ...