हिंदी

In an election, there are two candidates X and Y. On the election day, 80% of the voters go for polling, out of which 60% vote for X. - Computer Applications

Advertisements
Advertisements

प्रश्न

In an election, there are two candidates X and Y. On the election day, 80% of the voters go for polling, out of which 60% vote for X. Write a program to take the number of voters as input and calculate:

  1. number of votes received by X.
  2. number of votes received by Y. 
संक्षेप में उत्तर

उत्तर

import java.utiL*;
class U5_Q1{ 
public static void main(String args[])
{Scanner obj = new Scanner(System.in);
System.out.println("Enter the number of voters");
long v1;
double v2, x, y;
vl = obj.nextlnt(); // Input - eligible voters 
v2 = (80.0 / 100) * v1; // 80% of voters who polled
x = (60.0 / 100) * v2; // 60% of votes 
y = v2 − x; // remaining votes 
System.out.println(''No. of votes secured by x: " + (long)x);
System.out.println(''No. of votes secured by y: " + (long)y); 
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.06: Input in Java - EXERCISES [पृष्ठ ६६]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 1.06 Input in Java
EXERCISES | Q V. 1. | पृष्ठ ६६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×