标签:system class || while tin ati i++ util import
import java.util.Scanner;
public class tyt
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int k=in.nextInt();
int[] ints=new int[n];
int f=n;
int value=0;
for(int i=0;i<n;i++)
{
ints[i]=i+1;
}
while (f!=1)
{
for(int i=0;i<n;i++)
{
if(ints[i]!=0)
{
value++;
if(value%k==0||value%10==k)
{
ints[i]=0;
f--;
if(f==1)
{
break;
}
}
}
}
}
for(int h=0;h<n;h++)
{
if(ints[h]!=0)
{
System.out.println(h+1);
}
}
}
}
标签:system class || while tin ati i++ util import
原文地址:https://www.cnblogs.com/mokero/p/9639782.html