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...
Posts
Showing posts from July, 2022
- Get link
- X
- Other Apps
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
- Get link
- X
- Other Apps
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++) { ...
- Get link
- X
- Other Apps
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 ...
- Get link
- X
- Other Apps
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, ...
- Get link
- X
- Other Apps
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...
- Get link
- X
- Other Apps
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:- ...
- Get link
- X
- Other Apps
Summary Nowadays days C++ is the most popular object oriented programming language of the world and one of the most popular languages as a competitive programme.it can also run most popular OS such as windows, Mac ,ubuntu linux etc. Now we can discuss some basic format of C++, The first one is basics syntax in c++ we can learning C++ programming can be simplified into writing our program saving with correct extension for example .CPP, .C, .CP, second one is basics I\O we can use this working with as a input output. comment is the magik syntax for programmer this is a good practice as a programmer. It makes a program ...
- Get link
- X
- Other Apps
Inheritance With CPP fig: Inheritance The capability of a class to derive properties and characteristics from another class is called Inheritance. Inheritance is one of the most important features of Object-Oriented Programming. একটি শ্রেণির অন্য শ্রেণি থেকে বৈশিষ্ট্য ও বৈশিষ্ট্য আহরণের ক্ষমতাকে উত্তরাধিকার বলে। অবজেক্ট-ওরিয়েন্টেড প্রোগ্রামিংয়ের সবচেয়ে গুরুত্বপূর্ণ বৈশিষ্ট্যগুলির মধ্যে একটি হল উত্তরাধিকার। (সহজ কথায় ইনহেরিটেন্স হচ্ছে একজন থেকে আরেকজনের সম্পত্তি কোনরকম কয় বিক্রয় ছাড়া যেটা আমরা পেয়ে থাকি ওটাই ইনহেরিটেন্স এটাকে আমরা হেরিটেজ বা উত্তরাধিকার সূত্রে পাওয়া জিনিস বলতে পারে) Inheritance is a feature or a process in which new classes are created from the existing classes. The new class created is called “derived class” or “child class” and the existing class is known as the “base class” or “parent class”. The derived class now is said to be inherited from the base class. ইনহেরিটেন্স হল একটি বৈশিষ্ট্য বা একটি প্রক্রিয়া যেখানে বিদ্যমান ক্লাস থেকে নতুন ক্লাস...