Computer Science, asked by priyankasushma13, 9 months ago

Trade Fairs are important for companies to present their products and to get in touch with its customers and business parties. One such grandeur Trade Fair Event was organized by the Confederation of National Large Scale Industry.
Number of people who attended the event on the first day was x. But as days progressed, the event gained good response and the number of people who attended the event on the second day was twice the number of people who attended on the first day. Unfortunately due to heavy rains on the third day, the number of people who attended the event was exactly half the number of people who attended on the first day.

Given the total number of people who have attended the event in the first 3 days, find the number of people who have attended the event on day 1, day 2 and day 3.

Input Format:
First line of the input is an integer value that corresponds to the total number of people.

Output Format:
First line of the output should display the number of attendees on day 1.
Second line of the output should display the number of attendees on day 2.
Third line of the output should display the number of attendees on day 3.
Refer sample input and output for formatting specifications.
[All text in bold corresponds to input and rest corresponds to output.]

Sample Input and Output:
Enter the total number of people
10500
Number of attendees on day 1 : 3000
Number of attendees on day 2 : 6000
Number of attendees on day 3 : 1500

Answers

Answered by deepankongucse
10

Answer: (total number of people*2)/7

Explanation:

This the formula to get the answer

Answered by SamikshaDhere
0

Answer:

The code in c++  and java is

Explanation:

1. C++

#include <iostream>

using namespace std;

int main(){

   int total_guests;

   cout<< "Enter total number of guests : " << end1;

   cin >> total_guests;

   int guests_on_day1 = (2 * total_guests) / 7;

   int guests_on_day2 = 2 * guests_on_day1;

   int guests_on_day3 = guests_on_day1 / 2;

   cout << "Number of guests on day 1 are : " << guests_on_day1 << end1;

   cout << "Number of guests on day 2 are : " << guests_on_day2 << end1;

   cout << "Number of guests on day 3 are : " << guests_on_day3 << end1;

   return 0;

   

}

2. Java

import java.util.";

public class Main {

   

   public static void main(String[] args) {

       

       Scanner scanner = new Scanner(System.in);

       System.out.println("Enter the total number of people");

       int totalAttendees = scanner.nextInt();

       

       int firstDayAttendees (2 totalAttendees)/7;

       int secondDayAttendees 2 firstDayAttendees;

       int thirdDayAttendees firstDayAttendees/2;

       

       System.out.println("Number of attendees on day 1 firstDayAttendees);

       System.out.println("Number of attendees on day 2 secondDayAttendees);

       System.out.println("Number of attendees on day 3 thirdDayAttendees);

   }

}

#SPJ2

Similar questions