标签:sys lang 大学 string div 单位 而不是 span 程序实现
编写一程序实现以下功能
从键盘读入一个字符cBegin和一个数iCount,要求输出≤cBegin的iCount个字符。
依次输入一个字符和一个整数
依次输出字符,字符之间无空格分隔
M 8
在这里给出相应的输出。例如:
MLKJIHGF
1 import java.util.Scanner; 2 public class Main { 3 public static void main(String[] args) { 4 Scanner sc=new Scanner(System.in); 5 char k=sc.next().charAt(0); 6 int n=sc.nextInt(); 7 for(int i=0;i<n;i++) { 8 System.out.print(k); 9 k=(char) (k-1); 10 } 11 } 12 }
第九行为啥写k=(char) (k-1)而不是k=k-1.。。存疑
标签:sys lang 大学 string div 单位 而不是 span 程序实现
原文地址:https://www.cnblogs.com/Flyfishy/p/12164026.html