java loops

java loops

View Answers

April 7, 2009 at 11:35 AM

Hi friend,

Code to help in solving the problem :

class Pyramid
{
public static void main(String[] args)
{
System.out.println("*");
for(int i=1;i<=4;i++)
{
System.out.println("* *");
}
for(int i=1;i<=10;i++)
{
System.out.print("* ");
}

}
}

Thanks

October 22, 2010 at 9:13 PM

class a { public static void main(String[]args) { for(int i=1; i<=10; i++) { System.out.print("*"); } } }









Related Tutorials/Questions & Answers:
Java loops
Java loops  What is the difference between a while statement and a do statement
java loops
java loops  to find the sum of alternate digits in a given
Advertisements
Java - Declaring variables in for loops
Java - Declaring variables in for loops  Java - Declaring variables in for loops
How to read loops in Java
How to read loops in Java  Example that explains how to read loop in Java
LOOPS - Java Interview Questions
LOOPS   how to find out unique number of elements in given array?{1,2,5,3,2,1,1,7,2,3,0,1,5} output is: 1-4 2-3 3-2 5-2 0-1 7-1 i want source code plz help me
Loops
Loops  ï??Using for loops, Write a program to simulate a clock countdown. The program prompts the user to enter the number of seconds, displays a message at every second, and terminates when the time expires. Use method
LOOPS !! - Java Interview Questions
LOOPS !!  i have string "Hello" i want to print like H He Hel Hell Hello o ol oll olle olleh i want source code plz help me?  String s="Hello"; System.out.println(s.length()); System.out.println
Loops
Loops  Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
Loops
Loops  Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
java loops - Java Beginners
java loops  Q1 print the following pyramid * * * * * * * * * * * * * * * * * * * *   Hi friend, Code
java loops - Java Beginners
java loops   Print the pyramid --------- * --------* * * * * * * * * * * * * * * * * * *   Hi friend, Use the following code: class Pyramid { public static
java loops - Java Beginners
java loops  Q1-sum the series 2/9-5/13+8/17..... Q2 print first n odd numbers in descending order? Q3 program to input digits and write in words with out using any type of in built function and array program to print truth
JAVA LOOPS - Java Beginners
JAVA LOOPS  Hi I need a Java program that can toss a coin over and over until it comes up head 10 times. It should also record the number of tails.  Hi Friend, Try the following code: class Toss{ public final
java loops - Java Beginners
java loops  Q1 print the following pyramid? -------------* -----------* * ---------* * -------* * -----* * ---* * * * * * * * * * * * Q2-write...? Q4- Write a program to sum the series- 2/9-5/13+8/17......... Q 5
Loops
Loops  by using drjava q1.Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 q2.Write code
loops
loops  how to use for loop and while loop in java?/ how to write a code using for or while loop
read string - using loops in Java
read string - using loops in Java  Write a program to read a string composed of an unknown number of words, then count the number of words in the string, and Display the longest and shortest words, with first letter Uppercase
Loops
3.10. Loops Loops are the essential part of the program that have.... More than one loops can be used several times in a script. Loops makes easy... instructed for repetition of the code. PHP Loops ADS_TO_REPLACE_1 In PHP, like other
Loops
Loops
loops
loops
loops
nested for loops
. This is my first time using java and my first time programming, but I am guessing..."); } } } }   Close your loops before going
Java repeat string without using loops
Java repeat string without using loops In this section, you will learn how to repeat string without using for loops. The given example accepts the number of times and iterates the string to the number of times set by the user without
loops , control structures
loops , control structures  a simple java program to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
use of loops and screenshots
use of loops and screenshots  1.how to use loops in netbeans? 2.how to draw a correct screenshot
Java reverse words in a string using only loops
Java reverse words in a string using only loops In this tutorial, you will learn how to reverse words in a string without using any inbuilt methods like split() etc, StringTokenizer functiom or any extra ordinary function Only loops
ModuleNotFoundError: No module named 'loops'
ModuleNotFoundError: No module named 'loops'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'loops' How to remove the ModuleNotFoundError: No module named 'loops'
Using Nested loops
Using Nested loops  How to use nested loops in java when I want to print the 10 multiples of numbers 2 to 15(in multiplication table)   public class MultiplicationTable{ public static void main(String[] args) { int
Use javascript loops..
Use javascript loops..  Write a Javascript code to create a redirection script based on day of the week
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
pattern-using loops
pattern-using loops  Write a program that displays the following pattern ... (use nested loops) * ** * ** * ** *   the correct pattren
while loop to for loops
while loop to for loops  I have to change this while loops to for loops and I was wondering if you could help me out. I got the codes just need to know how to change it. int currentNum= num1; while(num1>num2
Use javascript loops..
Use javascript loops..  Write a JavaScript code to find a number of unique letters in string. (Eg. if keyword is Tajmahal, Tajmahal count will be '5' , it only takes these letters T,j,m,h,l , not taken the letter a because
Use javascript loops..
Use javascript loops..  Write a Javascript code, so that numbers...--){ document.write(" "); for(var k=q; k>=1;k--){ document.write(" "); } for(var j=1;j<...;"); q++; } document.write("</center>"); </script> ThanksADS
Arrays, loops and string handling
Arrays, loops and string handling  How would i go about in creating a program to mark and grade a set of multiple choice test results. this is a console program that uses JOptionPane dialog boxes as well. Read a set of 10
program that uses while loops to perform the following steps :
program that uses while loops to perform the following steps :  Write a program that uses while loops to perform the following steps : a. Prompt... inclusive f. Output all the uppercase letters. (java coding: pls help me
ModuleNotFoundError: No module named 'viral-loops-api'
ModuleNotFoundError: No module named 'viral-loops-api'  Hi, My... named 'viral-loops-api' How to remove the ModuleNotFoundError: No module named 'viral-loops-api' error? Thanks   Hi, In your python
Java Break example
these loops Java provides keywords such as break and continue respectively... Java Break example       Java Break keyword Java
Solve using only Javascript loops...
Solve using only Javascript loops...  Write a JavaScript code, 1) to find a number of unique letters in string. (Eg. if keyword is unique, Unique count will be '4') 2) so that numbers appear in following format, 1 1 2
JavaScript Loops Function
JavaScript Loops Types: In Java programming language a loop is a language..., and foreach loop. Following examples will help you to learn loops:ADS_TO_REPLACE_1...: 1 3 5 7 9 ADS_TO_REPLACE_3 Java While Loop Example 3: <html>
Java Break keyword
; Java programming involves loops that are widely used by programmers and for handling these loops Java provides keywords such as break and continue respectively. Among these Java keywords break is often used in terminating the loops
iPhone Loops in objective c
iPhone Loops in objective c If you have started learning Objective c, this small tutorial on "Loops in Objective c" would be helpful. In this series... programing then ..you must read the given definition of loops. What is loop
print 100 numbers using loops
of a is ="+a); } } }   How java is securable ?ADS_TO_REPLACE_3   why java
Javascript loops
nested loops
Nesting of loops
Nesting of loops  Q 1. Write a C Program to draw the following pattern. 11 9 7 5 3 1 9 7 5 3 1 7 5 3 1 5 3 1 3 1

Ads