換個格式輸出整數

讓我們用字母B來表示「百」、字母S表示「十」,用「12...n」來表示個位數字n(<10) 輸入樣例1:   234   輸出樣例1:   BBSSS1234   輸入樣例2:   23   輸出樣例2:   SS123 #include<iostream> #include<string> using namespace std; int main() { int n; cin>>n; int
相關文章
相關標籤/搜索