- 6 和 9 组成的最大数字
给你一个仅由数字 6 和 9 组成的正整数 num。你最多只能翻转一位数字,将 6 变成 9,或者把 9 变成 6 。请返回你可以得到的最大数字。
题源力扣
class Solution {
public int maximum69Number (int num) {
String s=Integer.toString(num);
int pos=s.indexOf("6");
if(pos==-1)return num;
pos=s.length()-pos;
num=num+3*(int)Math.pow(10.0,pos)/10;
return num;
}
}