1069: 统计字符gets函数
题目描述
编制程序,统计文本stdin中字符$出现的次数,并将结果写入文件stdout
输入
字符文本
输出
$次数
样例输入
as$dfkjhkjkjdhf
asdfkj$lskdfj
werijweirjo$wie
样例输出
3
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <string> 5 #include <algorithm> 6 #include <cmath> 7 using namespace std; 8 9 int main() 10 { 11 char str[100]; 12 int sum=0,i; 13 while(gets(str)){ 14 i=0; 15 while(str[i]){ 16 if(str[i++]=='$') sum++; 17 } 18 } 19 cout<<sum<<endl; 20 return 0; 21 }