Exemplo n.º 1
0
void EPRIME(){
  if(str[i]=='+'){
    i++;
    T();
    EPRIME();
  }
}
Exemplo n.º 2
0
void E()
{
	T();
	EPRIME();
}