Advertisements
Advertisements
प्रश्न
Write the program in Java to display the first ten terms of the following series:
l, 12, 123, 1234, ...................
थोडक्यात उत्तर
उत्तर
public class Q1e
{ public static void main(String args[])
{ for (int i = 1; i <= 10; i++)
{ for(int j = 1; j <= i; j++)
System.out.print(j);
System.out.print(" , ");
}
}}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२४]