Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
int ismot(char r)
{
	return((r>='a')&&(r<='Z'));
}
//********************************************
char expression::setmot()
{
	char y;
   while(ismot(exp[index]))
	{
      y=exp[index];
      index++;
	}
	return y[i];
}
//******************
double expression::getopernd
if(ismot(exp[index]))
	{
		mot=setmot();
		index++;
		return mot;
	}
SVP aidez moi, je ne c'est pas pouquoi ça marhce pas .
Je veut retourner un caractere
MERCI