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:
- number of votes received by X.
- 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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?