मराठी

Write the program in Java to display the first ten terms of the following series: 1, 11, 111, 1111, ................... - Computer Applications

Advertisements
Advertisements

प्रश्न

Write the program in Java to display the first ten terms of the following series:

1, 11, 111, 1111, ...................

थोडक्यात उत्तर

उत्तर

public class Q1d
{public static void main(String args[])
{ int s = 1;
System.out.print(s + ","); 
for (int i = 1; i < 10; i++)
{s = (s * 10) + 1;
System.out.print(s + ",");
}}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२४]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.09 Iterative Constructs in Java
EXERCISES | Q VI. 1. (d) | पृष्ठ १२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×