概述
字符串篇:
1.计算字符串最后一个单词的长度,单词以空格隔开。
输入描述:
一行字符串,非空,长度小于5000。
输出描述:
整数N,最后一个单词的长度。
示例1
输入
hello world
输出
5
#include <iostream>
#include <string>
using namespace std;
string re;
int main(){
getline(cin, re);
unsigned long a =re.find_last_of(" ");
string res=re.substr(a+1);
cout<<res.size()<<endl;
}
2.写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
输入描述:
输入一个有字母和数字以及空格组成的字符串,和一个字符。
输出描述:
输出输入字符串中含有该字符的个数。
示例1
输入
ABCDEF A
输出
1
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int64_t temp=0;
string re;
char a;
int main(){
cin >> re;
cin >>a;
for(int i=0;i<re.size();i++){
if(re[i]==a||re[i]==a-32||re[i]==a+32) temp++;
}
cout<<temp;
}
3.写出一个程序,接受一个十六进制的数值字符串,输出该数值的十进制字符串。(多组同时输入 )
输入描述:
输入一个十六进制的数值字符串。
输出描述:
输出该数值的十进制字符串。
示例1
输入
0xA
输出
10
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int64_t temp=0,n=0;
int64_t dec=0;
string re1;
int main(){
while(getline(cin, re1)){
int64_t length = re1.length();
for(int i=2;i<length;i++){
if(re1[i]<='f'&&re1[i]>='a') n=re1[i]-'a'+10;
if(re1[i]<='F'&&re1[i]>='A') n=re1[i]-'A'+10;
else
n=re1[i]-'0';
temp = temp *16+n;
}
cout << temp<<endl;
temp=0;
}
最后
以上就是畅快楼房为你收集整理的华为机试字符串篇:的全部内容,希望文章能够帮你解决华为机试字符串篇:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复