EL ERROR QUE ME APARECE ES EL SIGUIENTE 21 expected primary-expression before "else" POR FAVOR SU AYUDA URGENTE
#include <cstdlib>
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int digitos=0;
char c;
cout<<"Digite Numero '.'"<<endl;
while ((c=getchar())!='.')
if (isdigit(c))digitos ++;
{
cout<<" Cifras = "<<endl;
}
else (digitos < 0);
{
cout <<"error no acepta negativos" <<endl;
}
// break;
system("PAUSE");
return EXIT_SUCCESS;
}
#include <cstdlib>
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int digitos=0;
char c;
cout<<"Digite Numero '.'"<<endl;
while ((c=getchar())!='.')
if (isdigit(c))digitos ++;
{
cout<<" Cifras = "<<endl;
}
else (digitos < 0);
{
cout <<"error no acepta negativos" <<endl;
}
// break;
system("PAUSE");
return EXIT_SUCCESS;
}