华为机试

字符串篇:

1.计算字符串最后一个单词的长度,单词以空格隔开。 

输入描述:
 
  

一行字符串,非空,长度小于5000。

输出描述:
 
  

整数N,最后一个单词的长度。

示例1

输入

hello world

输出

5
#include 
#include 
using namespace std;

string re;

int main(){
    getline(cin, re);
    unsigned long a =re.find_last_of(" ");
    string res=re.substr(a+1);
    cout<

2.写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。

输入描述:

 
  

输入一个有字母和数字以及空格组成的字符串,和一个字符。

输出描述:

 
  

输出输入字符串中含有该字符的个数。

示例1

输入

ABCDEF A

输出

1

#include 
#include 
#include 

using namespace std;

int64_t temp=0;
string re;
char a;
int main(){
    cin >> re;
    cin >>a;
    for(int i=0;i

3.写出一个程序,接受一个十六进制的数值字符串,输出该数值的十进制字符串。(多组同时输入 )

输入描述:

 
   

输入一个十六进制的数值字符串。

输出描述:

 
   

输出该数值的十进制字符串。

示例1

输入

0xA

输出

10
#include 
#include 
#include 

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='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<


你可能感兴趣的:(笔试题)