Java教程

pat1027

本文主要是介绍pat1027,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1027 Colors in Mars (20 分)

题目思路

普通的进制转换

坑点就是字符串可以直接与string相加,不需要使用to——string

相关知识点

进制转化

 while (a){
        int c=a%13;
        if(c>=10){
            char t=c-10+'A';
            s= t+s;
        } else{
            s= to_string(c)+s;

        }
        a/=13;
    }
    for (int i = s.length(); i < 2; ++i) {
        s="0"+s;

    }

代码复现

#include "iostream"
#include "vector"
#include "algorithm"
using namespace std;

string  change(int a){
    string s;

    while (a){
        int c=a%13;
        if(c>=10){
            char t=c-10+'A';
            s= t+s;
        } else{
            s= to_string(c)+s;

        }
        a/=13;
    }
    for (int i = s.length(); i < 2; ++i) {
        s="0"+s;

    }
    return s;

}


int main(){
    int a,b,c;

    cin>>a>>b>>c;
    cout<<"#"<<change(a)<<change(b)<<change(c);



    return 0;
}
这篇关于pat1027的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!