1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
AnnZ [28]
3 years ago
8

Write a program in which you input three numbers they canhave decimals so float values and the program gives you the minvalue ou

t of the three. Please need asap thank you
Computers and Technology
1 answer:
rosijanka [135]3 years ago
6 0

Answer:

Following is the c++ code:-

#include <bits/stdc++.h>

using namespace std;

int main() {

   float a,b,c;//declaring three float variables..

   cout<<"enter values"<<endl;

   cin>>a>>b>>c;//taking input..

   float mi=min(a,b);//finding minimum in a and b..

   mi=min(mi,c);// finding minimum from mi and c.

   cout<<mi<<endl;//printing the answer.

return 0;

}

Explanation:

I have taken three float variables to hold the values.

then I am finding the minimum in a and b and storing it in mi.

Then finding minimum from mi and c so we will get our final minimum number.

You might be interested in
What happens when you apply a theme to a form?
Ludmilka [50]

Answer:

it will be customizable, you can design it in a different style

Explanation:

4 0
3 years ago
Excel contains ____ tools not available in access.
max2010maxim [7]
I think that calculation tools would be the answer. <span>Excel contains calculation tools not available in access. Excel enables you to create formulas for ease in operation for future purposes. Almost all operations can be found in excel which cannot be found in Access.</span>
5 0
4 years ago
Assignment 10: Create a Song of the Summer edhesive
Marrrta [24]

To create a song of the Summer edhesive you can use the Python Code,

which will help you create sections based on the music genre.

<h3 /><h3>What is Python code?</h3>

It corresponds to a programming language that enables the development of various media platforms, such as games, social networks and artificial intelligence applications.

Therefore, the Python code helps to automate tasks as it is an open-source language, allowing communication and adaptation of different objectives.

Find out more about Phython code here:

brainly.com/question/16397886

#SPJ1

3 0
2 years ago
Read 2 more answers
Data as a service began with the notion that data quality could happen in a centralized place, cleansing and enriching data and
saul85 [17]

Answer: True

Explanation:

 Yes, the given statement is true that the data as the service model basically describe about the data quality which could be happened in the centralized place and also enriching the given data. It also offer the data services to the different types of users, system and applications.

 The data as a service (DaaS) is similar to the software as s service. The DaaS concept is that it is provided according to the requirement of the user such as data and information of the different types of product and services.

 It is technically known as the web delivering service which is offer by the cloud manager and its also perform various types of function.  

7 0
3 years ago
What is the name of a popular high-level computer programming and scripting language that is the name of a snake?
Murljashka [212]
The name of the programming language is PYTHON.
Python is a popular, high level programming language that is used for general purpose programming. Python is objected oriented  and it uses dynamic typing for memory management. The programming language was created in the late 80's by Guido Van Rossum.
7 0
4 years ago
Other questions:
  • In the simulation, player 2 will always play according to the same strategy. The number of coins player 2 spends is based on wha
    6·1 answer
  • Which mitigation technique would prevent rogue servers from providing false ip configuration parameters to clients?
    5·2 answers
  • ASAP
    12·2 answers
  • _______is the equal distribution of visual weight on either side of an imaginary axis through the center of a design. A building
    6·2 answers
  • Advantages of desktop publishing over traditional methods include       
    11·1 answer
  • Remember partially filled arrays where the number of elements stored in the array can be less than its capacity (the maximum num
    14·1 answer
  • A) Importance of Software Engineering I​
    5·1 answer
  • How many passes will it take to find the five in this list?
    6·2 answers
  • 3. When code tracing, why is it important to iteratively test parts of the program?
    8·1 answer
  • Code a program that gets all possible solutions of a string using 3 for loops. Actual question attached
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!