$str="aaa.bbb.ccc.ddd";
$a=explode(".",$str);
echo
sizeof($a)-1;
?>
c++面向对象程序设计吧????没有什么面向程序
#include
using
namespace
std;
class
ccount
{
public:
ccount();
void
getstring();
int
getcount();
private:
char
str[100];
int
ncount;
};
ccount::ccount()
{
ncount
=
0;
}
void
ccount::getstring()
{
cout<<"请输入字符串:
";
gets(str);
}
int
ccount::getcount()
{
char
ch;
cout<<"需统计的字符:
";
cin>>ch;
if(strlen(str)
>
0)
{
for(int
i=0;
str[i]!='\0';
i++)
{
if(str[i]
==
ch)
ncount++;
}
}
return
ncount;
}
int
main()
{
ccount
co;
co.getstring();
cout<
评论
0
0
加载更多