Câu 1.18: Viết hàm đếm số chữ cái in hoa trong một xâu ký tự. Viết chương trình nhập vào từ bàn phím xâu ký tự s, áp dụng hàm trên cho biết trong xâu s có bao nhiêu chữ in hoa.

Monday, August 11, 2014
// cbai18.cpp : Defines the entry point for the console application.
// CODE DUNG NV

#include "stdafx.h"
#include <stdio.h>
#include <conio.h>
#include <ctype.h>

int kthoa(char s[])
{
                int i=0,dem=0;
                while (s[i]!='\0')
                {
                                if (s[i]>='A'&&s[i]<='Z') dem++;
                                i++;
                }
                return dem;
}
int _tmain(int argc, _TCHAR* argv[])
{
                char s[100];
                printf("Nhap vao mot xau ki tu: ");
                gets(s);
                printf("\nSo ky tu hoa la : %5d",kthoa(s));
                getch();
                return 0;

}
Chia sẻ bài viết ^^
Other post

All comments [ 0 ]


Your comments