C
xxxxxxxxxx
int main() {
char line[150];
int vowels, consonant, digit, space;
vowels = consonant = digit = space = 0;
printf("Enter a line of string: ");
fgets(line, sizeof(line), stdin);
for (int i = 0; line[i] != '\0'; ++i) {
if (line[i] == 'a' || line[i] == 'e' || line[i] == 'i' ||
line[i] == 'o' || line[i] == 'u' || line[i] == 'A' ||
line[i] == 'E' || line[i] == 'I' || line[i] == 'O' ||
line[i] == 'U') {
++vowels;
} else if ((line[i] >= 'a' && line[i] <= 'z') || (line[i] >= 'A' && line[i] <= 'Z')) {
++consonant;
} else if (line[i] >= '0' && line[i] <= '9') {
++digit;
} else if (line[i] == ' ') {
++space;
}
}
printf("Vowels: %d", vowels);
printf("\nConsonants: %d", consonant);
printf("\nDigits: %d", digit);
printf("\nWhite spaces: %d", space);
return 0;
}
Enter a line of string: adfslkj34 34lkj343 34lk Vowels: 1 Consonants: 11 Digits: 9 White spaces: 2
Linux - كيفية تثبيت anc-api-tools
Linux - كيفية تثبيت curvedns
Linux - كيفية تثبيت zenmap
Python - تحقق مما إذا كان الرقم موجبًا أم سالبًا أم 0
C - عد عدد الأرقام في عدد صحيح
C++ - تحقق مما إذا كان الرقم أوليًا أم لا
JavaScript - تحقق مما إذا كانت السلسلة تبدأ وتنتهي بأحرف معينة
C - ابحث عن أكبر رقم باستخدام تخصيص الذاكرة الديناميكي
Kotlin - عكس رقم
Kotlin - تقريب رقم إلى n منازل عشرية
C++ - تحقق من السنة الكبيسة
Linux - كيفية تثبيت zfs-test
Linux - كيفية تثبيت zstd
Java - عكس رقم
GoLang - ترميز Base64
Kotlin - أوجد عاملي العدد
C++ - البحث عن الحاصل والباقي
PHP - صفيف بترتيب تنازلي
We have been online since 2021 and 1 millions of people around the globe have visited our website since then
More visitors every month