打印begin~end
Posted 希望明天会更好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印begin~end相关的知识,希望对你有一定的参考价值。
要求:
输入:begin和end
输出:依次打印出begin到end
1 import java.util.Scanner; 2 //递归打印begin —— end 3 public class demo1 { 4 5 public static void f(int begin,int end){ 6 if(end-1>=begin){ 7 f(begin,end-1); 8 } 9 System.out.print (end+" "); 10 } 11 public static void main(String[] args) { 12 Scanner sc = new Scanner(System.in); 13 int begin = sc.nextInt(); 14 int end = sc.nextInt(); 15 f(begin,end); 16 } 17 18 }
以上是关于打印begin~end的主要内容,如果未能解决你的问题,请参考以下文章
使用 BEGIN / END 组织 SQL 代码有啥危害吗?