码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4054

时间:2014-11-30 16:49:09      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

http://acm.hdu.edu.cn/showproblem.php?pid=4054

模拟题,对一个字符串的每个字符输出16进制表示的数字,每行处理16个字符,后面再把这16个字符输出,大小写互换

利用%x可以直接输出16进制,轻松秒掉

bubuko.com,布布扣
#include <iostream>
#include <cstdio>
#include <cstring>
#include <map>
#include <algorithm>
#include <queue>
#include <cmath>
#include <stack>
#include <set>

using namespace std;

char str[6000];

int main(){
    while(gets(str)){
        int len=strlen(str);
        for(int i=0;i<len;i+=16){
            printf("%04x:",i);
            int odd=1;
            int cnt=0;
            for(int j=i;j<len && j<i+16;j++){
                if(odd&1){
                    odd=0;
                    printf(" %x",str[j]);
                    cnt+=3;
                }
                else{
                    odd=1;
                    printf("%x",str[j]);
                    cnt+=2;
                }
            }
            for(int j=0;j<41-cnt;j++)
                putchar( );
            for(int j=i;j<len && j<i+16;j++){
                if(str[j]>=a && str[j]<=z){
                    printf("%c",str[j]-a+A);
                }
                else if(str[j]>=A && str[j]<=Z){
                    printf("%c",str[j]-A+a);
                }
                else{
                    printf("%c",str[j]);
                }
            }
            putchar(\n);
        }
    }
    return 0;
}
View Code

 

HDU 4054

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/xiaohongmao/p/4133218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!