頭文件
#include
#include
#include
#include
#include
void count(char a[]);
using namespace std;
void count(char a[])
{
int D_num=0,X_num=0,num=0,spen=0,other=0;
int i;
for(i=0;i<=(strlen(a)-1);i++)
{
if(a[i]>='a' && a[i]<='z')
X_num++;
else if(a[i]>='A' && a[i]<='Z')
D_num++;
else if(a[i]>='0' && a[i]<='9')
num++;
else if(a[i]==' ')
spen++;
else
other++;
}
cout<<"小寫字符為:"<<X_num;
cout<<"大寫字母為:"<<D_num;
cout<<"數字為:"<<num;
cout<<"空格為:"<<spen;
cout<<"其他為:"<<other<<endl;
}
.CPP
#include "stdafx.h"
void main()
{
int i;
char a[1000];
cout<<"請輸入一串文字:"<<endl;
for(i=0;a[i]=getchar()!='\n';i++){}
cout<<"核查如下:"<<endl;
count(a);
_getch();
}
為什麼運行結果 只有把其他統計 數字什麼的不統計 哪裡有問題
主函數裡for寫成這樣試試:
for(i=0;(a[i]=getchar()) != '\n';i++)