हिंदी

Write the program in Java to display the first ten terms of the following series: 1, −3, 5, −7, 9, ................ - Computer Applications

Advertisements
Advertisements

प्रश्न

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

1, −3, 5, −7, 9, ................ 

संक्षेप में उत्तर

उत्तर

public class Q1b
{ public static void main(String args[])
{ int x = 1;
for (int i = 1; i <= 10; i++)
{ if (i % 2 == 0)
System.out.print((x * -1) + ",");
else
System.out.print(x + ",");
x += 2;
}}}
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. (b) | पृष्ठ १२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×