Calculate Equivalent Resistance of Resistors in C++

  • Context: Engineering 
  • Thread starter Thread starter Smiler7
  • Start date Start date
  • Tags Tags
    C++ Circuit Program
Click For Summary
SUMMARY

The discussion focuses on writing a C++ program to calculate the equivalent resistance of multiple resistors entered by the user. The program should utilize a while loop to continuously prompt for resistance values until a zero is entered, which signals the end of input. Key issues raised include correctly storing non-zero resistance values in an array and accurately calculating the total resistance, with examples provided for resistances of 1 kΩ, 2 kΩ, 4 kΩ, and 8 kΩ. The conversation also highlights potential confusion regarding the series or parallel configuration of resistors.

PREREQUISITES
  • C++ programming fundamentals
  • Understanding of arrays and loops in C++
  • Basic knowledge of electrical resistance concepts
  • Familiarity with input/output functions in C++ (e.g., printf, scanf)
NEXT STEPS
  • Implement dynamic memory allocation for storing resistance values in C++
  • Learn about the Standard Template Library (STL) and how to use vectors for dynamic arrays
  • Study the differences between series and parallel resistor configurations
  • Debug C++ programs using tools like gdb to trace variable values during execution
USEFUL FOR

Students learning C++ programming, electrical engineering students, and developers looking to enhance their skills in user input handling and array manipulation in C++.

Smiler7
Messages
2
Reaction score
0
Write a program that prompts the user to enter the resistance of each resistor continuously by using a while loop until a zero resistance is entered and store it in an array, then calculates the equivalent resistance R. Also count the number of resistors n. Test your program with R1 = 1 kΩ,R2 = 2 kΩ.,R3 = 4 kΩ and R4 = 8 kΩ . What is the equivalent resistance? Use another separate loop to print the resistances and the equivalent resistance.

I'm trying to do this question above but i don't actually get what its asking for?!
----------------------------------------------------------------------------------------
"Write a program that prompts the user to enter the resistance of each resistor continuously by using a while loop until a zero resistance is entered and store it in an array, then calculates the equivalent resistance R..."

/* Starting with this bit i could write a program where i enter the value of each resistor. But "continuously by using a while loop until a zero resistance is entered and store it in an array"?! */
 
Physics news on Phys.org
It means you're supposed to enter 0 to signal that you've entered all the resistances. Something like this:

Enter your resistances one by one; enter a 0 when you're finished:
Resistance #1: 1
Resistance #2: 2
Resistance #3: 4
Resistance #4: 8
Resistance #5: 0

The result is...

Of course, you don't actually store "resistance #5" in the array or use it in the calculation.
 
Read the value.

If it is not zero - add it to the end of the array, continue reading.

If it is zero - don't add to the array, stop reading, proceed to the next stage.

IMHO the way it is worded now it is ambiguous, as you are not told if the resistors are connected in series, or in parallel.
 
Thanks guys.

but now I'm into it I am stuck...

So far i have created a program that asks straight away the value of resistance.

Say i type in 10 ohms it loops until i press 0 ohms. When i press 0 ohms it prints out the total. But the total always comes out to be zero.?!

My other problem... How do i save all my values > than zero into an array?!

I think we will try and tackle these problems first. Am i going the right way?

#include <stdio.h>

main()

{

double RTP,X;

/* The loop statement */

RTP=0;

do
{
printf ("Enter the value of Resistance in Ohms >");
scanf("%lf",&X);
RTP += (1/X);

if (X < 0)
{
printf ("Resistance can't be negative >\n");


}

else if (X == 0)

{
printf ("Zero Resistance entered. >\n");
printf ("\n The Total resistance is %lf Ohms.",(1/RTP));


}

}while (X > 0,X);

}
 
To make your programs more readable, use [noparse]
Code:
[/noparse] tags, for example

[noparse]
Code:
int main()
{
   return 0;
}
[/noparse]

displays as

Code:
int main()
{
   return 0;
}

Are you sure you should be using printf and scanf, and not cin/cout for input/output?

Code:
while (X > 0,X)

works as expected only by accident - was it really your plan to use a comma operator?

When it comes to the result - it is not that unexpected. Simplest way of checking what is happening is to either run it under debugger, or to add a line

Code:
printf("%lf, %lf\n",X,RTP);

just before if (X < 0) check. This way you will see intermediate results, they should be helpful.

Storing the information in array is a different animal, and it can be a little bit tricky if you are not told how many elements to expect. Are you expected to use STL and vector, or Microsoft's CArray, or should you use a dynamically allocated memory and implement everything by yourself? The latter seems unlikely.
 

Similar threads

Replies
5
Views
4K
Replies
12
Views
2K
Replies
6
Views
2K
  • · Replies 17 ·
Replies
17
Views
12K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 8 ·
Replies
8
Views
5K
  • · Replies 5 ·
Replies
5
Views
2K