2022.8.3

LeetCode

思维题 最小表示法
最小表示法题解

最小表示法:
最小表示法原理及实现在这篇blog中

AcWing

16进制读写

#include<bits/stdc++.h>
using namespace std;

int ans;

int main()
{
    while(scanf("%X", &ans)!=EOF){
        printf("%d\n", ans);
    }
    
    return 0;
}
posted @ 2022-08-03 15:35  superPG  阅读(16)  评论(0编辑  收藏  举报