हिंदी

Hero Honda has increased the cost of its vehicles as per the type of the engine using the following criteria: Type of Engine 2 stroke 4 stroke Rate of increment 10% of the cost 12% of the cost - Computer Applications

Advertisements
Advertisements

प्रश्न

Hero Honda has increased the cost of its vehicles as per the type of the engine using the following criteria:

Type of Engine Rate of increment
2 stroke 10% of the cost
4 stroke 12% of the cost

Write a program by using a class to find the new cost as per the given specifications:

Class name: Honda
Data members/Instance variables
int type: to accept type of engine 2 stroke or 4 stroke
int cost: to accept previous cost
Member Methods:
void gettype(): to accept the type of engine and previous cost
void find(): to find the new cost as per the criteria given above
void printcost(): to print the type and new cost of the vehicle 

वाक्य को सही करें और फिर से लिखें

उत्तर

import java.util.*;
class Honda{
int type, cost;

void gettype()
{Scanner sn = new Scanner(System.in);
System.out.println("Enter the type of the Engine");
System.out.println("Type 2 for 2stroke (or) 4 for 4stroke engine");
type = sn.nextInt();
System.out.println("Enter the previous cost");
cost = sn.nextInt();
}

void find()
{if (type = 2) cost = cost + (int) (0.10 * cost);
else if (type == 4) cost = cost + (int) (0.12 * cost);
}

void printcost()
{System.out.println("Type: " + type);
System.out.println("New cost: " + cost);
}

public static void main(String args[])
{Honda obj = new Honda();
obj.gettype();
obj.find();
System.out.println("\n\n");
obj.printcost();
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 6: Class as the Basis of all Computation (Objects and Classes) - EXERCISES [पृष्ठ ३८७]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 6 Class as the Basis of all Computation (Objects and Classes)
EXERCISES | Q VI. 9. | पृष्ठ ३८७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×