?? jzzh.java
字號:
/**
* Write a description of class jzzh here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class jzzh
{
public static String Str="";
public static void f(int n,int o)
{
char temp='A';
int d;
d=n%o;
n/=o;
if(n>=1) f(n,o);
if(d<10) Str+=d;
for(int i=0;i<d-10;i++)
temp++;
if(d>=10) Str+=temp;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -