大厂笔试题
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.
 
 
 

24 lines
300 B

// #include<iostream>
// #include<vector>
// using namespace std;
// int main(){
// cout<<"asd"<<endl;
// return 0;
// }
#include<iostream>
#include<vector>
using namespace std;
int main(){
int* a[10] = {0};
string str = "132456";
cout<<str.length()<<endl;
return 0;
}