Returning Position of String Array

I'm Trying to return the position of a string array. Here is may code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "stdafx.h"
#include <iostream>
#include <cmath>
#include <string>
#include <iomanip>

using namespace std;
string Cards[4][13] =	{{"AH","2H","3H","4H","5H","6H","7H","8H","9H","10H","JH","QH","KH"},
						{"AD","2D","3D","4D","5D","6D","7D","8D","9D","10D","JD","QD","KD"},
						{"AC","2C","3C","4C","5C","6C","7C","8C","9C","10C","JC","QC","KC"},
						{"AS","2S","3S","4S","5S","6S","7S","8S","9S","10S","JS","QS","KS",}};

int MrArray[5] = {2, 3, 6, 10, 12}, TheNum;

string c = "2H";
int value;

int main()
{
	cout << "  the Card Value your looking for is : " << c;

	for (int i = 0; i < 4; i++)
	{
		for (int j = 0; j <13; j++)
		{
			if (Cards [i][j] = c)
			{
			cout << "You found " << c << "at Cards[" << i << "]."
					<< endl;
			}
		}
	}

		cout << "Number to search for: ";
		cin >> TheNum;

		for(int i = 0; i < 5; i++)
		{
			if(MrArray[i] == TheNum)
			{
				cout << "You found " << TheNum << "at MrArray[" << i << "]."
					<< endl;
			}
			
		}

	return 0;

}


I trying to get "2H" Position which is in Card [1][1].

Can any one help with this?
Last edited on
Instead of the assignment operator in the line

if (Cards [i][j] = c)

ypu should use the comparision operator

if (Cards [i][j] == c)
Last edited on
Thank you so Much.
Topic archived. No new replies allowed.