Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
public class Run {
public static void main(String[] args) {
int a = 48, b = 48, c = 48, d = 48;
while (d < 91) {
System.out.println((char) d + "" + (char) c + "" + (char) b + "" + (char) a);
a++;
if (a == 58)
a = 65;
if (a == 90) {
b++;
if (b == 58)
b = 65;
a = 48;
if (b == 90) {
c++;
if (c == 58)
c = 65;
b = 48;
if (c == 90) {
d++;
if (d == 58)
d = 65;
c = 48;
}
}
}
}
}
}
StringBuffer sb=new StringBuffer("0123456789abcdef");
public void count(int start,int up)
{
StringBuffer value=new StringBuffer();
for(int i=start;i<=start+up;i++)
{
value.delete(0,value.length());
int rest=i%sb.length();
int div=i/sb.length();
value.append(sb.charAt(rest));
while(div>0)
{
rest=div%sb.length();
div=div/sb.length();
value.insert(0,sb.charAt(rest));
}
System.out.println(value);
}
}