16进制的简单使用
题意:
给出一行字符串,有三个要求
- 把字符串按照16进制输出,第一列是编号
- 把字符串按照16进制输出,八个16进制为一列
- 把字符串中小写字母变大写,大写字母变小写
所以说:一共三种需求,分别输出即可
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn = 5000;
char s[maxn];
int main(int argc, char const *argv[])
{
//freopen("in.txt","r",stdin);
while(gets(s)) {
int len = strlen(s);
for(int i = 0;i < len; i += 16) {
printf("%04x: ",i);
for(int j = i;j < i + 16; j+=2) {
if(j >= len) printf(" ");
else if(j + 1 >= len) printf("%02x ",s[j]);
else printf("%02x%02x ",s[j],s[j+1]);
}
for(int j = i;j < i + 16 && j < len ;j++) {
if(s[j] >= 'a' && s[j] <= 'z') printf("%c",s[j]-'a'+'A');
else if(s[j] >= 'A' && s[j] <= 'Z') printf("%c",s[j]-'A'+'a');
else printf("%c",s[j]);
}
printf("\n");
}
}
return 0;
}