大厂笔试题
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
300 B

  1. // #include<iostream>
  2. // #include<vector>
  3. // using namespace std;
  4. // int main(){
  5. // cout<<"asd"<<endl;
  6. // return 0;
  7. // }
  8. #include<iostream>
  9. #include<vector>
  10. using namespace std;
  11. int main(){
  12. int* a[10] = {0};
  13. string str = "132456";
  14. cout<<str.length()<<endl;
  15. return 0;
  16. }