write c++ program to get from user the user and print whether it is positive or negative

Answers

Answer 1

Answer:

I think this is positive

Explanation:


Related Questions

edhesive in JAVA Write a method that takes a String parameter. If the String has a double letter (i.e. contains the same letter twice in a row) then it should return true. Otherwise, it should return false.
This method must be named hasRepeat() and have a String parameter. This method must return a boolean.

Answers

I've included my code in the picture below. Best of luck.

The method is an illustration of loops and conditional statements.

Loops are used for repetitive operations, while the execution of a conditional statement is based on its truth value.

The hasRepeat() method in Java, where comments are used to explain each line is as follows:

   //This defines the hasRepeat() method

   public static boolean hasRepeat(String str){

       //This initializes the previous character

       char prevC = ' ';

       //This iterates through the characters of the string str

       for(int i = 0; i<str.length();i++){

           //This gets the current character

           char currC = str.charAt(i);

           //If the current character and the previous character are the same

           if(currC == prevC){

               //Return true

               return true;

           }

           //Assign the current character to the previous character

           prevC = currC;

       }

       //Return false, it the string contains no repetitive character

       return false;

   }

At the end of the method, the program returns true or false.

Read more about similar programs at:

https://brainly.com/question/14998938

help help help help​

Answers

Answer:

D i think............

What is a small symbol or graphic used to highlight a line of text?

Answers

Answer:

It would be a little highlighter at the top of the screen.

Explanation:

kahoot code: 08408519

Answers

Answer:

yayy!!

Explanation:

ok

Answer:

y am i always late tho

Explanation:

How does entering search terms in quotation marks affect search results?

Answers

if it is in quotations someone said or wrote those words, so when you search in quotation those are someone’s words and it might show who’s words they are.

Define a recursive function named merge chars, it is passed two str arguments, in which all the characters appear in alphabetic order; it returns a str that contains all the characters in its argument strings, also appearing in alphabetic order.

Answers

Answer:

def merge_chars(str1, str2):

    if not str1 and not str2:

         return ''

    if str1 and (not str2 or str1[0] <= str2[0]):

         return str1[0] + merge_chars(str1[1:], str2)

    else:

         return str2[0] + merge_chars(str1, str2[1:])

Note: It's written in Python3

Explanation:

This line defines the function

def merge_chars(str1, str2):

This checks for empty strings. If yes, it return an empty string

    if not str1 and not str2:

         return ''

The following merge and sorts both strings, recursively

This checks if only one of the strings is not empty

    if str1 and (not str2 or str1[0] <= str2[0]):

         return str1[0] + merge_chars(str1[1:], str2)

This checks if both strings are not empty

    else:

         return str2[0] + merge_chars(str1, str2[1:])

Question #2
Multiple Choice
What is the index of 7 in this list?
[5, 6, 10, 7, 3, 2.5]

A ) 3
B ) 2
C ) 4
D ) 7

Answers

Answer:

C.

Explanation:

mukhang

letter

C.

pambihira

ka

naman

bat

hindi

ka

magtanong

sa

mga

nakakatanda

mong

kapatid

Answer:

The answer to your question is C. Have a wonderful safe day. <3 <3 <3

Explanation:

JAVA Write code which prints every number from 1 to 20 a number of times equal to the number itself (e.g. one 1, two 2's...). Every individual number printed should be separated by a space, and there should be a new line each time the number changes. You should use nested loops to produce your output (it will result in far less code).

Partial sample run:

1
2 2
3 3 3
........

Answers

I've included my code in the picture below. Best of luck.

Write a SELECT statement that returns four columns: VendorName, InvoiceNumber, InvoiceDate, and InvoiceTotal. Return one row per invoice that shows the vendor and invoice results that have an invoice date that is the same as any of the United Parcel Service invoices. Organize the results by invoice date from earliest to latest invoice.

Answers

Answer:

SELECT VendorName, InvoiceNumber, InvoiceDate, InvoiceTotal

FROM Vendor JOIN Invoice ON Vendors.VendorID = Invoices.VendorID

WHERE InvoiceDate = United_parcel_service

ORDER BY InvoiceDate DESC

Explanation:

A database is a storage unit where data is stored for future reference. SQL or structure query language is a programming language used to query databases for specific information.

The SELECT clause is used to read data from the database table. The JOIN and ON clauses are used to query multiple tables and databases. The WHERE clause is used to select and return rows based on a given condition, where the ORDER BY clause is used to sort and organize the returned result.

परीक्षा केन्द्र :...सार
........ ....
बनागरीमा) : सापडला वियापा
IT (IN BLOCK LETTER): SAV DEEP KUMAR ek
on No.) 764556
)
. 35
ना (देवनागरीमा) :.....र...तोफिक
परीक्षा दिने विषयहरू
जन्म मिति
वि.सं.
करोएपछि......शी
कक्षा ११
ype
R-REGULAR
P= PARTIAL
Exam
pjects
Sub.Code No.
S.N.
Sub
1.com Eng
Accountan
2​

Answers

Answer:

idont know

Explanation:

anong

klaseng tanong

ito

ikaw

lang

siguro

makasagut

rito

What's up with this new update?

Ok, so I love this Brainly update, but my only issue is the message system. I will think I have some notification, but it says a message, so I am like "Great, what did I do this time", but there will be no new messages. So does anybody know what it's all about or is it an error?

Also I may be getting a new computer for my birthday, but I don't know which one I want to get, are there any reccomendations? I plan to use Source Film Maker, hopefully VR, and Steam Games

Answers

Answer:

so do i the notifications are out of control i try to ignore them

Explanation:

and yea so it seems you like to do things such as VR? if so i suggest one from the Oculus brand i dont use them but i heard they were good!

~Brianna/edgumacation

Answer:

I figured it out

Explanation:

To explain the notification thing brainly says you have messages when its notifications related to comments because comments are usually made up of people talking to each other, so it just comes through as a message notification.

what must be the same for each variable in an array in compiled languages?

Answers

The data type must be the same for each item in the array.

As you enter code in Visual Studio, the _____ feature provides drop-down lists of coding options that you can enter by selecting and pressing the Tab key.

Answers

Answer:

IntelliSense

Explanation:

Microsoft Visual Studio can be regarded as a an integrated development environment, it is utilized in the development of computer programs. It can be reffered to as a code editor redefined and used in the development and debugging of modern webs, mobile apps development and others. It is developed by Microsoft . Some of the features is code editor that supports syntax highlighting as well as code completion through the utilization of IntelliSense for functions, IntelliSense which can be regarded as a term to denote code editing features which contains quick info, code completion as well as member lists. It should be noted that as As you enter code in Visual Studio, the IntelliSense feature provides drop-down lists of coding options that you can enter by selecting and pressing the Tab key.

Create a column vector named y that starts at 123 and
end at -323, with each element separated by 2 (odd numbers)
using : and the transpose operator.​

Answers

Hxfjxkfxhgcvvccchbhjkkn by j

Answer:

jiskkxjxizkxjxjksz by y

Explain the importance of understanding plagiarism, copyright, and fair use during a time when some much of your schoolwork is done in the virtual environment.

Answers

Answer:

Firstly, it is unethical because it is a form of theft. By taking the ideas and words of others and pretending they are your own, you are stealing someone else's intellectual property. Secondly, it is unethical because the plagiariser subsequently benefits from this theft.

Explanation:

I hope this helps! Have a good day.

In the program below, which two variables have the same scope?
def subtract(numA, numb):
return numA - numB
def divide(numC, numD):
return numC/ numD
answer = divide(24,6)
print (answer)
numD and
num
numA
numB
Yeah

Answers

Answer:

Numc

Explanation:

Just did the quiz :]

Which of the following is not a benefit of shaping data with the Power Query Editor?
A.)Data can be merged from multiple sources.
B.)Shaped data can be added to a data model.
C.)Shaped data does not retain links to external file sources.

Answers

Answer:

A

Explanation:

I am not 100% sure but without the shaping data, data can still be merged from multiple sources.

The one that is not a benefit of shaping data with the Power Query Editor is that Shaped data does not retain links to external file sources.

Shaping data refers to transforming the data through the act of renaming columns or tables, changing text to numbers, removing rows etc.

Shape data often connect to different data sources and then combine those data sources in creating a data model to use in reports.

Conclusively, Data shaping focuses on building hierarchical relationships between two or more logical building blocks in a query.

Learn more from

https://brainly.com/question/19509866

Input a number and find the square root only if the number entered is greater than or equal to zero.

Answers

number = float(input("Enter a number: "))

if number >= 0:

   print(number**0.5)

I hope this helps!

Which of the following file formats cannot be imported using Get & Transform?
A.) Access Data table
B.)CVS
C.)HTML
D.)MP3

Answers

Answer:

The correct option is D) MP3

Explanation:

According to the given scenario, The data that can be imported using get and transform is as follows:

a. CVS

b. Hypertext markup language (HTML)

c, Access data table

The Get and transform means first get the data and then modify according to your needs.

So as per given options, the option D i.e MPC i.e. file format this cannot be imported using Get & transform

Therefore the correct option is D) MP3

How did the use of ARPANET change computing?

Scientists were able to communicate over large distances.

Scientists could use computers that had different operating systems.

Computers no longer had to be wired to a main computer to communicate.

Scientists were able to connect to the World Wide Web through ARPANET.

Answers

The use of ARPANET changed computing because:

Scientists were able to communicate over large distances.Scientists could use computers that had different operating systems.Computers no longer had to be wired to the main computer to communicate.

ARPANET was developed by the United States Advanced Research Projects Agency.

The main reason for the creation of ARPANET was to make it easier for people to be able to access computers. Also, it was vital as it helped improve computer equipment and was a vital method for communication in the military.

Furthermore, it helped in communicating over large distances and ensured that scientists could use computers that had different operating systems.

In conclusion, it was also vital as computers no longer had to be wired before they can communicate.

Read related link on:

https://brainly.com/question/15980664

Answer:

A B and C

Explanation:

Scientists were able to communicate over large distances.

Scientists could use computers that had different operating systems.

Computers no longer had to be wired to a main computer to communicate.

List 4 criteria of power your house with wind

List 3 contraints( limitations) of power your house with wind



Please help me

Answers

Answer:

1st Is that you don't need to pay for electricity.

2nd It's that yo don't poluate the nature.

3rd It depends of the country, in some of them you can get some support for this from the state , I mean you can get lower prices for water and staff like that.

Hope I helped you , have a nice da

Write a statement that calls the recursive function BackwardsAlphabet() with parameter startingLetter.

Answers

Answer:

Explanation:

The code can be computed as follows:

#include <stdio.h>

void BackwardsAlphabet(char currLetter){

if (currLetter == 'a') {

printf("%c\n", currLetter);

}

else{

printf("%c ", currLetter);

BackwardsAlphabet(currLetter - 1);

}

return;

}

int main(void) {

char startingLetter = '-';

startingLetter = 'z';

BackwardsAlphabet(startingLetter);

return 0;

}

Recursions are simply functions that calls and executes itself.

The statement that calls the recursive function is: BackwardsAlphabet(startingLetter);

From the question, we have the following parameters

Function name: BackwardsAlphabetFunction parameter: startingLetter

The syntax of calling a function is:

function_name(function_parameter);

So, the statement that calls the function is:

BackwardsAlphabet(startingLetter);

The above statement is true for several programming languages such as C, C#, C++, Java, Python, etc.

Read more about recursive functions at:

https://brainly.com/question/13657607

The photo shows a group of girls reacting to comments they have read about a classmate on a social media site.
One girl stands by herself, looking sad. Four girls stand apart from her, looking at her and pointing. Two girls cover their mouths to hide a laugh. How might the girls react differently to best prevent cyberbullying?

Answers

Answer:

no

Explanation:

beacuse

Alex has composed a layout with this Image for a magazine. Which rule of composition has Alex applied?
OA. alignment
OB. golden ratio
OC.unity
OD. contrast

Answers

Answer:

B. golden ratio

Explanation:

Golden ratio is a composition has Alex applied.

What is Golden ratio?

The Greek letter "phi" is used to represent the golden ratio, a specific number that is roughly 1.618.

It frequently appears in geometry, fine art, architecture, and other fields. Euclid referred to the golden ratio as the extreme and mean ratio, and Luca Pacioli referred to it as the heavenly proportion, among other titles.

Since ancient times, mathematicians have researched the characteristics of the golden ratio. It appears in the building of the dodecahedron and icosahedron as the ratio of a regular pentagon's diagonal to its side.

Therefore, Golden ratio is a composition has Alex applied.

To learn more about Golden ratio, refer to the link:

https://brainly.com/question/29567506

#SPJ2

A motor is controlled by a logic circuit. The circuit has inputs (0 or 1) from three sensors
R, T and W. The motor is switched off when the output from the logic circuit is 1.

Answers

Answer:

motor is controlled by a logic circuit. The circuit has inputs (0 or 1) from three sensors

R, T and W. The motor is switched off when the output from the logic circuit is 1. wym

what is the value of the variable double dNum=14/5?

Answers

Answer:

2.0

Explanation:

In the case where the result is cast to a double, the answer evaluated to an in type (2) then was cast to a double which gives you 2.0.

Write bash script which takes array as an input of size 10 bind its even indexes to accept even values and odd indexes to accept odd numbers only. Print invalid input if given input is not valid.

Answers

Answer:

Bash script which takes array as an input of size 10 bind its even indexes to accept even values and odd indexes to accept odd numbers only is explained below in detail.

Explanation:

Even digits at an even table and odd digits at an odd table

Given an array of size n comprising an equal number of odd and even digits. The difficulty is to manage the numbers in such an approach that all the even digits get the even table and odd digits get the odd table. The necessitated auxiliary space is O(1).

Examples :

Input : arr[] = {8, 5, 1, 12, 6, 3}

Output : 3 6 1 12 5 8

Input : arr[] = {7, 9, 10, 19, 13, 18, 21, 20, 4, 14}

Output : 18 9 10 19 20 7 14 13 4 21

Malware is any malicious software installed on a computer or network without the owner’s knowledge.
Question 4 options:
True
False

Answers

Answer: True

Explanation: Malware is literally short for malicious software. The name that is given to any type of software that could harm a computer system or collect a user's data.

Hope it helped please mark as brainliest!

Checkpoint 10.43 Write an interface named Nameable that specifies the following methods: _______{ public void setName(String n) public String getName()} Fill in the blank.

Answers

Answer:

Fill the blank with

public interface Nameable {

Explanation:

Required

Complete code segment with the interface definition

The given code segment is divided into three parts

1. The interface

2. The method that returns nothing

3. The method that returns string

The blank will be filled with the definition of the interface.

The definition is as follows:

public interface Nameable {

Analyzing the above definition

public -----> This represents the modifier

interface ------> This represents that the definition is an interface

Nameable ------> This represents the name of the interface

b) Machine cycle defines a loop process with four major components. Explain why machine cycle is important? If the components of machine cycle are inter-swapped, would that cause any problems?Can we add another module to rectify the problem caused by inter-swapping?

Answers

Answer:

Machine cycle defines a loop process with four major components is explained below in detailed explanation.

Explanation:

The machine cycle has four methods i.e. fetch method, decoding method, execute method, and store method. All these methods are essential for the preparation performance of the processor. By the machine cycle, the execution of the processor can be measured and the device can be decided.

Importance of Machine Cycle

The machine cycle is essential for the execution of machine direction by the computer processor as the device execution is based on the machine cycle. If the direction is not executed accurately the execution can be deteriorated by the processor.

Other Questions
Is it true or false that Entrepreneurs often work long hours, but they enjoy great job satisfaction. Write the equation of the line that passes through the points (-8,-5) (5,8) The car travelled at the constant speed of 50.5 mph for 3 hours.How far did the car travelled? You are presented with 9 coins from an archeological dig near the highlands of Tibet. One of them contains a precious jewel that can make you extremely wealthy. The coin with the jewel is slightly heavier than the others, the other eight are identical. You can only choose once so you are given 2 scales so that you can weigh the coins. Heres the dilemma, each balance scale can only be weighed once. Is it possible to select the slightly heavier coin containing the jewel using each of the two scales only once? Explain why or why not How does an American Bullfrog gain energy for their growth? What should you avoid when writing a review?A. Using mundane words such as fantastic or wonderfulB. Writing your opinionC. Providing details about the negative features of the productD. Providing details about the positive features of the product Which sentence best expresses the author's view of appreciating small beginnings?A Piece of Chalkby G. K. Chesterton (adapted excerpt)I then tried to explain the rather delicate logical shade, that I not only liked brown paper, but liked the quality of brownness in paper, just as Iliked the quality of brownness in October woods, or in the peat-streams of the North. Brown paper represents the primal twilight of the first toilof creation, and with a bright-colored chalk or two you can pick out points of fire in it, sparks of gold, and blood-red, and sea-green, like the firstfierce stars that sprang out of darkness. All this I said in an off-hand way) to the old woman; and I put the brown paper in my pocket along withthe chalks, and possibly other things. I suppose every one must have reflected how primeval and how poetical are the things that one carries inone's pocket; the pocket-knife, for instance, the type of all human tools, the infant of the sword. Once I planned to write a book of poemsentirely about the things in my pockets. But I found it would be too long and the age of the great epics is past.With my stick and my knife, my chalks and my brown paper, I went out on to the great downs. I crawled across those colossal contours thatexpress the best quality of England, because they are at the same time soft and strong. The smoothness of them has the same meaning as thesmoothness of great cart-horses, or the smoothness of the beech-tree; it declares in the teeth of our timid and cruel theories that the mighty aremerciful. What helped break the stalemate in World War I and allowed the Allies to winWorld War I? A. The assassination of Archduke Franz FerdinandB. Entangling AlliancesC. A stalemateD. American entry into the war Select the correct answer. What is the role of the leader in a group discussion? A. to introduce information for the group to discuss B. to help resolve conflicts during group discussions C. to track the time spent on the group discussion D. to take notes on the main points of discussion How do I boost my chances of getting a Flemish Giant rabbit? My parents said, if I can care for our 2 cats and our 1 dog, do all of my chores daily, and take care of myself, around Christmas they'll consider getting one. How do I convince them that I'm mature enough to take care of one? When liquid water gets into cracks of rock and freezes, it _____ and ______.A contracts, splits apart the rockB contracts, washes aways pieces of rockC expands, splits apart the rockD expands, washes away pieces of rock Read the passage from Sugar Changed the World. The year is 326 B.C. Alexander the Great stands at the Indus River in what is now Pakistan. For a decade he and his Greek soldiers have been battling their way across the known world, defeating even the mighty Persians, rulers of Asia. Alexanders string of victories only feeds his hunger to conquer all, to know all. But his men balk. Tired of fighting, homesick, they refuse to go on. Alexander realizes he cannot continue to conquer Asia, but he is too curious to stop exploring. He has already built a fleet of eight hundred ships, appointed his close friend Nearchus captain, and sent them to investigate the coast of lndia by sea.And it is Nearchus who stumbles upon the "sweet reed." The Greeks knew something of India (actually the Indian subcontinent, the area that today includes the nations of India and Pakistan) from the books of Herodotus, a writer who lived about a century earlier. He reported that when the Persian emperor Darius I invaded India around 510 B.C., his men found a sweet reed that produced honey.Which text features would be most helpful to support the central idea of the passage? Select two options.1. a timeline showing how people have used sugar in the past and up until the present2. a diagram of one of the eight hundred ships that Alexander the Great had built3. a map of Alexander the Great's route and the site of the sugar cane discovery4. a diagram of sugar cane, showing details of its outside and inside5. a timeline showing when Darius I and Alexander the Great learned of sugar cane Write the expression 5X(X + 9) - 7(x + 9) in complete factored form. A (x+9)(x + 9) B. (5x-7)(x + 9) C. (5x-7)(x+9)(x + 9) D. (5x2 + 45X)(-7x - 63) What percentage of cash crops were produced on large plantations? 25 percent 50 percent 75 percent 100 percent help me plzssssssss The chemical reaction below represents a metabolic process.C 6H 12O 6 + 6O 2 6CO 2 + 6H 2OWhich of the following metabolic processes uses the products of the reaction shown above as its reactants?glycolysisfermentationphotosynthesiscellular respiration A 3-pack of light bulbs costs $3.45. A 4-pack of the same light bulbs costs $4.20.Which pack has better value? Kelly was building a bed for her dollhouse. She used her bed, which is 4 feet 6 feet, as a guide. She scaled down the dimensions of her bed by a factor 1 over 5 . What are the dimensions of the model bed she built? 0.8 foot 1.2 feet0.4 foot 0.6 foot 0.08 foot 0.12 foot 0.04 foot 0.06 foot describe the role of manpower in the development of a country In general, most people who live in the rural areas of the Middle East __________. A. work in agriculture B. live in smaller families C. have access to advanced technology D. wear Western-style clothing Please select the best answer from the choices provided A B C D