HDU 2149: Public Sale (in Java)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2149: Public Sale (in Java)相关的知识,希望对你有一定的参考价值。
/**
* @link http://acm.hdu.edu.cn/showproblem.php?pid=2149
* @author Sycamore
* @date Aug, 21
*/
import java.util.*;
class Main{
public static void main(String args[]){
Scanner scanner=new Scanner(System.in);
while(scanner.hasNextInt()){
int m=scanner.nextInt(),n=scanner.nextInt();
int mod=m%(n+1);
if(mod==0){
System.out.println("none");
continue;
}
if(m<=n){
for(int i=m;i<n;i++)
System.out.print(i+" ");
System.out.println(n);
}
else{
System.out.println(mod);
}
}
scanner.close();
}
}
以上是关于HDU 2149: Public Sale (in Java)的主要内容,如果未能解决你的问题,请参考以下文章