“Sprawdź, czy ciąg to numer C” Kod odpowiedzi

C ciąg jest int

int isNumber(char s[])
{
    for (int i = 0; s[i]!= '\0'; i++)
    {
        if (isdigit(s[i]) == 0)
              return 0;
    }
    return 1;
}
Distinct Dog

c Sprawdź, czy znak to cyfra

char ch = '1';
if(isdigit(ch))
  printf("numeric");     
else
    printf("alphabet" );
 // output: numeric
CCopy
Dark Dugong

Sprawdź, czy ciąg to numer C

#include <stdio.h>
#include <ctype.h>
int main(void){
	char liste[] = "axxg34d2e82";
	int status = 0;
	for(int i=0;liste[i]!='\0';i++)
	{
		if (status==1){break;}
		while(isdigit(liste[i])){
			printf("%c", liste[i]);
			
			if(isdigit(liste[i+1])){
				status = 1;
			}
			i++;
		}
	}
	
	return 0;
}
Filthy Falcon

Odpowiedzi podobne do “Sprawdź, czy ciąg to numer C”

Pytania podobne do “Sprawdź, czy ciąg to numer C”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu