体験出力文字の中にどれだけの‘Aがあるか
872 ワード
/*
* :
*Copyright(c)2013,
*All rights reserved.
* :
* :
* :2013 12 2
* :
* :
* :
* :
* :
* :
* :
* :
*/
:
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
char str[50];
int i=0,n=0;
cout<<" :"<<endl;
gets(str);
while(str[i]!='\0')
{
if(str[i]=='A') n++;
i++;
}
cout<<" A : "<<n<<endl;
return 0;
}
結果:
心得体得:しばらく...