#include <stdio.h>
#include <conio.h>
#include <string.h>
int main()
{
char s[100];
printf("Nhap chuoi s:");
gets(s);
printf("\nChuoi vua nhap:%s",s);
int demhoa = 0, demthuong = 0, demso = 0;
for (int i = 0; i < strlen(s); i++);
{
if (s[i] >= 'A' && s[i] <= 'Z')
demhoa++;
if (s[i] >= 'a' && s[i] <= 'z')
demthuong++;
if (s[i] >= '0' && s[i] <= '9')
demso++;
}
printf("\nSo ky tu chu HOA la:%d",demhoa);
printf("\nSo ky tu chu thuong la:%d",demthuong);
printf("\nSo ky tu chu so la:%d",demso);
return 0;
}
Giúp sửa lỗi sai
Bạn vui lòng mô tả vấn đề gặp phải. IO mong muốn và IO thực tế.
2 Likes