算法训练 图形显示
Posted watchfree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法训练 图形显示相关的知识,希望对你有一定的参考价值。
算法训练 图形显示
时间限制:1.0s 内存限制:512.0MB
问题描述
编写一个程序,首先输入一个整数,例如5,然后在屏幕上显示如下的图形(5表示行数):
* * * * *
* * * *
* * *
* *
*
* * * * *
* * * *
* * *
* *
*
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); int n=sc.nextInt(); for(int i=n;i>=1;i--){ for(int j=1;j<=i;j++){ System.out.print("* "); } System.out.println(); } } }
以上是关于算法训练 图形显示的主要内容,如果未能解决你的问题,请参考以下文章
ZZNUOJ_用C语言编写程序实现1640:图形显示(附完整源码)