通过次数
0
提交次数
编程: 读入一个两位数,输出十位上和个位上的数字。
45
4 5
#include<bits/stdc++.h> using namespace std; string a; int main() { cin>>a; for(int i=0;i<a.size();i++) cout<<a[i]<<" "; return 0; }