Advertisements
Advertisements
प्रश्न
Define a class to overload the function print as follows:
void print() | to print the following format | |||
1 | 1 | 1 | 1 | |
2 | 2 | 2 | 2 | |
3 | 3 | 3 | 3 | |
4 | 4 | 4 | 4 | |
5 | 5 | 5 | 5 |
void print(int n) | To check whether the number is a lead number. A lead number is one whose sum of even digits is equal to the sum of odd digits. |
e.g. 3669 odd digits sum = 3 + 9 = 12 |
उत्तर
public class Prmtclass
{
// instance variables - replace the example
below with your own
public void print()
{
for(int i=1;i<=5;i++)
{for(int j=1;j<=5;j++)
System.out.print(i+" ");
System.out.println("\n");}
}
public void print(int n)
{
int se=0,d=0,so=0;
while (n>0)
{
d=n%10;
if (d%2=0)
se+=d;
else
so+=d;
n/=10;
}
if (se==so)
System.out.println("Lead number");
else
System.out.println("Not a Lead number");
}
public static void main(String [] args)
{
Printclass ob=new Printclass();
ob. print();
ob.print(1542);
}
}
APPEARS IN
संबंधित प्रश्न
Design n class to overload a function SumSeriesO as follows:
(i)
void SumSeries(int n, double x) – with one integer argument and one double argument to find and display the sum of the series given below:
`"s" = "x"/1 - "x"/2 + "x"/3 - "x"/4 + "x"/5`...... ...... ...... to n terms
(ii)
void SumSeries() – To find and display the sum of the following series:
s = 1 + (1 x 2) + (1 x 2 x 3) + ….. + (1 x 2 x 3 x 4 x 20)
Define a class to overload the method display() as follows:
void display(): To print the following format using nested loop.
1 2 1 2 1
1 2 1 2 1
1 2 1 2 1
void display (int n, int m): To print the quotient of the division of m and n if m is greater than n otherwise print the sum of twice n and thrice m. double display (double a, double b, double c) - to print the value of z where
z = p × q
`p=(a+b)/c` q = a + b + c