C++ Articles

Page 216 of 597

Program to find line passing through 2 Points in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 972 Views

In this problem, we are given coordinates two points A and B on the coordinate plane. Our task is to create a program to find line passing through 2 Points in C++.Problem DescriptionTo find the line, we need to use the equation of the line and put the solution using the coordinates.Let’s take an example to understand the problem−Input: A = (3, 3) B = (6, 1) Output: 2x + 3y = 15Solution ApproachTo find the equation of the line, we will use the general equation of line −ax + by = cThis has to be satisfied by both the points ...

Read More

Program to find minimum number of lectures to attend to maintain 75% in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 1K+ Views

In this problem, we are given two numbers M and N that denote the total number of classes held till present data and the number of classes attended by the student respectively. Our task is to create a program to find minimum number of lectures to attend to maintain 75% in C++.Problem DescriptionThis is one of the biggest concerns of college students to maintain 75% percent attendance. This program calculates the minimum number of lectures that are to be attended regularly by the student to get an attendance of 75%.Let’s take an example to understand the problem, Example 1Input: M ...

Read More

Program to find N-th term of series a, b, b, c, c, c...in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 392 Views

In this problem, we are given a number N. Our task is to create a Program to find N-th term of series a, b, b, c, c, c…in C++.Problem DescriptionTo find the Nth term of the series −a, b, b, c, c, c, d, d, d, d, ....Nterms We need to find the general term of the series.Let’s take an example to understand the problem, InputN = 7OutputdSolution ApproachTo find the general term of the series, we need to closely observe the series. The series has 1 a, 2 b’s, 3 c’s, 4 d’s, ... This seems to be an AP. ...

Read More

Program to find N-th term in the given series in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 329 Views

In this problem, we are given a number N. Our task is to create a program to find N-th term in the given series in C++.Problem DescriptionTo find the sum of the given series −1, 1, 2, 3, 4, 9, 8, 27, 16, 81, 32, 243, 64, 729, 128, 2187, 256, ... NTermsWe will find the general term of the series.Let’s take an example to understand the problem, Example 1InputN = 6Output9Example 2InputN = 13Output64Solution ApproachTo solve the problem, we need to carefully observe the series. As it is, a mixture series and these types of series are difficult to ...

Read More

Program to find Nth term divisible by a or b in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 790 Views

In this problem, we are given three numbers A, B, and N. Our task is to create a program to find Nth term divisible by A or B in C++.Problem DescriptionThe Nth Term divisible by A or B. Here, we will find the term n number term which is divisible by number A or B. For this, we will count till nth numbers that are divisible by A or B.Let’s take an example to understand the problem, InputA = 4, B = 3, N = 5Output9ExplanationThe terms the are divisible by 3 and 4 are −3, 4, 6, 8, 9, ...

Read More

Program to find N-th term of series 0, 0, 2, 1, 4, 2, 6, 3, 8...in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 277 Views

In this problem, we are given a number N. Our task is to create a program to find N-th term of series 0, 0, 2, 1, 4, 2, 6, 3, 8…in C++.Problem descriptionTo find the Nth term of the given series−0, 0, 2, 1, 4, 2, 6, 3, 8 .... N TermsWe will find the general term of the series.Let’s take an example to understand the problem, InputN = 8Output3Solution ApproachTo find the general term of the series, we need to closely observe the series. This series is a bit difficult to recognize as it is a mixture of two ...

Read More

Program to find N-th term of series 0, 7, 8, 33, 51, 75, 102, 133...in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 167 Views

In this tutorial, we will be discussing a program to find N-th term of series 0, 7, 8, 33, 51, 75, 102, 133...For this, we will be provided with a number. Our task is to find the term for the given series at that particular position.Example#include #include using namespace std; //calculating nth term of series int nthTerm(int n) {    return 2 * pow(n, 2) + n - 3; } int main() {    int N = 4;    cout

Read More

Program to find N-th term of series 0, 10, 30, 60, 99, 150, 210, 280...in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 222 Views

In this tutorial, we will be discussing a program to find N-th term of series 0, 10, 30, 60, 99, 150, 210, 280...For this, we will be provided with a number. Our task is to find the term for the given series at that particular position.Example#include #include using namespace std; //calculating nth term of series int nthTerm(int n) {    return 5 * pow(n, 2) - 5 * n; } int main() {    int N = 4;    cout

Read More

Program to find N-th term of series 1, 6, 17, 34, 56, 86, 121, 162, ...in C++

Ayush Gupta
Ayush Gupta
Updated on 11-Mar-2026 181 Views

In this tutorial, we will be discussing a program to find N-th term of series 1, 6, 17, 34, 56, 86, 121, 162, …For this, we will be provided with a number. Our task is to find the term for the given series at that particular position.Example#include #include using namespace std; //calculating nth term of given series int nthTerm(int n) {    return 3 * pow(n, 2) - 4 * n + 2; } int main() {    int N = 4;    cout

Read More

Complex Number Multiplication in C++

Arnab Chakraborty
Arnab Chakraborty
Updated on 11-Mar-2026 2K+ Views

Suppose we have two strings that are representing complex numbers, we have to parse them and perform complex number multiplication, then return result as a string.So if the input is like “1+-1i” and “1+-1i”, then the result will be “0+-2i”.To solve this, we will follow these steps −aa := a pair of real and imaginary of first complex numberbb := a pair of real and imaginary of second complex numberx := aa.real * bb.real – aa.img*bb.imgy := aa.real * bb.img + aa.img*bb.realreturn the string as “x+yi”Let us see the following implementation to get better understanding −Example#include using namespace std; ...

Read More
Showing 2151–2160 of 5,962 articles
« Prev 1 214 215 216 217 218 597 Next »
Advertisements