gpt4 book ai didi

c++ - 当 不包含在 C++ 中时,为什么我可以使用字符串函数 length()?

转载 作者:行者123 更新时间:2023-11-28 05:34:45 28 4
gpt4 key购买 nike

<分区>

代码如下,字符串库已经注释掉了,但是程序还是可以正常运行的

#include<iostream>
//#include<string> // the string library has been commented
using namespace std;

int main(){
int n;
cin>>n;
for(int i=0; i<n; i++){
string str;
int num = 0;
cin>>str;
int len = str.length(); //the function length is used here!
for (int j =0; j< len; j++){
if (str[j] >='0' && str[j] <='9')
num ++;
}
cout<<num<<endl;
}
return 0;
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com