You are on page 1of 1

/* * To change this template, choose Tools | Templates * and open the template in the editor.

*/ package Tania; /** * * @author Luis Eduardo Jardn */ public class Tania { /** * @param args the command line arguments */ public static void main(String[] args) { for(int i = 1; i <= 100; i++){ System.out.println(i + ".-Tania"); } for(int i = 100; i >= 1; i--){ System.out.println(i + ".-calamardo tentaculos"); } } }

You might also like