Java Eclipse homework. I need help coding this
Project 14A - Basically Speaking

package: proj14A
class: TableOfBases

Create a project called TableOfBases with class Tester. The main method should have a for loop that cycles through the integer values 65 <= j <= 90 (These are the ASCII codes for characters A – Z). Use the methods learned in this lesson to produce a line of this table on each pass through
the loop. Display the equivalent of the decimal number in the various bases just learned (binary, octal, and hex) as well as the character itself:
Decimal Binary Octal Hex Character
65 1000001 101 41 A
66 1000010 102 42 B
67 1000011 103 43 C
68 1000100 104 44 D
69 1000101 105 45 E
70 1000110 106 46 F
71 1000111 107 47 G
72 1001000 110 48 H
73 1001001 111 49 I
74 1001010 112 4a J
75 1001011 113 4b K
76 1001100 114 4c L
77 1001101 115 4d M
78 1001110 116 4e N
79 1001111 117 4f O
80 1010000 120 50 P
81 1010001 121 51 Q
82 1010010 122 52 R
83 1010011 123 53 S
84 1010100 124 54 T
85 1010101 125 55 U
86 1010110 126 56 V
87 1010111 127 57 W
88 1011000 130 58 X
89 1011001 131 59 Y
90 1011010 132 5a Z

Answers

Answer 1

Answer:

I can't just do your project but use this as a head start.

Explanation:

public class TableOfBases

{

   public static void main(String[] args)

   {

       // print out "Decimal    Binary   Octal   Hex    Character";

       //  write a for loop from 65 to 90

       for (int i ...  ) {

         // get a string for integer i with base 2

           String binary = Integer.toString (i,2);

         // get a string for integer i with base 8

           String octal = Integer.toString( ...   );

         // get a string for integer i with base 16

           String hex =  ...

        // get a char for a chararater that has ASCII code i

           char ch = (char) i ;

         // print out binary, octal and hex, and ch

       }

   }

}

/*

Project... Basically Speaking

Create a project called TableOfBases with class Tester.

The main method should have a for loop that cycles through the integer values

65 <= j <= 90 (These are the ASCII codes for characters A – Z).

Use the methods learned in this lesson to produce a line of this table on each pass

through the loop. Display the equivalent of the decimal number in the various bases

just learned (binary, octal, and hex) as well as the character itself:

Decimal Binary Octal Hex Character

65 1000001 101 41 A

66 1000010 102 42 B

67 1000011 103 43 C

68 1000100 104 44 D

69 1000101 105 45 E

70 1000110 106 46 F

....

71 1000111 107 47 G 72 1001000 110 48 H 73 1001001 111 49 I 74 1001010 112 4a J 75 1001011 113 4b K 76 1001100 114 4c L 77 1001101 115 4d M 78 1001110 116 4e N 79 1001111 117 4f O 80 1010000 120 50 P 81 1010001 121 51 Q 82 1010010 122 52 R 83 1010011 123 53 S 84 1010100 124 54 T 85 1010101 125 55 U 86 1010110 126 56 V 87 1010111 127 57 W 88 1011000 130 58 X 89 1011001 131 59 Y 90 1011010 132 5a Z

*/


Related Questions

Why do Selection Sort and Insertion Sort’s outer loops run 11 iterations if there are 12 elements in the array?

Answers

Answer:

The final case in selection sort is trivially sorted.

The final iteration in insertion sort is not needed.

Explanation:

For selection sort, you make sub arrays and find the smallest element placing it in the front and repeat until sorted.  This guarantees the final element will already be the greatest element, thus it is trivially sorted.

For Insertion sort, you use the initial element and compare it to the previous element and swap if the current is larger than the previous.  Using this sort, you will always perform n-1 comparisons where n is the total amount of elements in the array.  Thus, there are only 11 iterations for a 12 element array.

Cheers.

what is an operating system​

Answers

Answer:

the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals.

Explanation:

Answer:

nbv

c

.

l

lmmmm

n

pp

Explanation:

p

ll am ll..

Find the max and min of a set of values using recursion Find the max and min of a set of values using recursion. First input the values. The first value inputted is the number of additional data items to input. For instance, if the input is: 3 1 2 3

Answers

Answer:

This question is answered using Python programming language

def MaxSet(mylist, count):  

     if (count == 1):  

           return mylist[0]  

     return max(mylist[count - 1], MaxSet(mylist, count - 1))  

def MinSet(mylist, count):  

     if (count == 1):  

           return mylist[0]  

     return min(mylist[count - 1], MinSet(mylist, count - 1))  

count = int(input("Length of set: "))

mylist = []  

for i in range(count):

     inp= int(input("Input: "))

     mylist.append(inp)

   

print("Minimum: "+str(MinSet(mylist, count)) )

print("Maximum: "+str(MaxSet(mylist, count)) )

Explanation:

This defines the recursion that returns the maximum

def MaxSet(mylist, count):  

This following checks for the maximum using recursion

     if (count == 1):  

           return mylist[0]  

     return max(mylist[count - 1], MaxSet(mylist, count - 1))  

This defines the recursion that returns the minimum

def MinSet(mylist, count):  

This following checks for the minimum using recursion

     if (count == 1):  

           return mylist[0]  

     return min(mylist[count - 1], MinSet(mylist, count - 1))  

The main begins here

This prompts user for length of set

count = int(input("Length of set: "))

This defines an empty list

mylist = []  

The following iteration gets user input

for i in range(count):

     inp= int(input("Input: "))

     mylist.append(inp)

This calls the minimum function    

print("Minimum: "+str(MinSet(mylist, count)) )

This calls the maximum function

print("Maximum: "+str(MaxSet(mylist, count)) )

one hex digit is sometimes reffered as

Answers

A Hexadecimal or a Nibble

help plzzzzzzzzzzzzzzzzzzzzzzzzz

Answers

B, Parallel ports are faster than serial ports.

A parallel port can move a set of 8 bits at a time on eight different wires, it uses a 25 pin connector, called a DB-25 connector, whereas a serial port only has a DB-9 connector.

What is the Big-Oh of the following computation? int sum = 0; for (int counter = 1; counter < n; counter++) sum = sum + counter;

Answers

Answer:

The Big-O notation of the algorithm is O(n)

Explanation:

The declaration and update of the integer variable sum is a constant of O(1). The for loop statement, however, would repeat relative to the size of "n", increasing the counter variable and updating the sum total by the counter.

Write code that generates a random odd integer (not divisible by 2) between 50 and 99 inclusive.

Answers

import random

nums = [x for x in range(50,100) if x%2!=0]

print(random.choice(nums))

We use a list comprehension to create a list of the odd numbers between 50 and 99. Then we randomly choose one of those numbers using the random module.

What is the purpose of an End User License Agreement?
to ensure that software users understand their rights and responsibilities
to ensure that software users understand how to use and install the program
to require users to erase installer files after a software migration project
to license users to make multiple changes to proprietary software

Answers

Answer:

A

Explanation:

The EULA is, in basic terms, a contract between the user and the software's owners that while the user is in possesion of the licensed sofware, that they must follow the guidelines set or risk losing the license.

Answer:

to ensure that software users understand their rights and responsibilities

Explanation:

Hope this helps!

Which career qualification is unique to the Energy Transmission career pathway and not to the Energy Distribution pathway? color vision for identifying differences in colored wires critical thinking and reasoning skills for analyzing information stress management for handling urgent tasks mechanical knowledge and ability to drive and operate machinery working well with customers and being friendly

Answers

Answer:

a, c, d

Explanation:

Answer:

it is just A

Explanation:

on edge. unit test review

use the drop-down menus to complete the statements about using column breaks in word 2016

Answers

1,2,1,3

Explanation:

layout

section

number

more options

The complete statement can be columns and column break are layout feature. Column breaks can be inserted into a section of the document. Under layout tab, one can change the number of columns, and by clicking more options, one can open the column dialog box.

What is layout?

Layout is the process of calculating the position of objects in space under various constraints in computing. This functionality can be packaged as a reusable component or library as part of an application.

Layout is the arrangement of text and graphics in word processing and desktop publishing. The layout of a document can influence which points are highlighted and whether the document is visually appealing.

The entire statement can be divided into columns, and column breaks are a layout feature.

A section of the document can have column breaks. The number of columns can be changed under the layout tab, and the column dialog box can be opened by clicking more options.

Thus, these are the answers for the given incomplete sentences.

For more details regarding layout, visit:

https://brainly.com/question/1327497

#SPJ5

The TCP _____ is the amount of information that a machine can receive during a session and still be able to process the data.

Answers

Answer:

transport layer protocol

Explanation:

The full form of TCP is Transmission Control Protocol. It is defined as the standard of establishing and maintaining a network conversation with the help of which the programs can exchange information and data. TCP works with IP or Internet Protocol.

The application programs uses the TCP transport layer protocol to receive data which is in the form of byte streams that contains the information in the commands. TCP is also called as the "connection-oriented" protocol.

It is important to understand the different types of DoS attacks and the symptoms of those attacks. Leaving a connection half open is a symptom of which type of attack?

Answers

Answer:

SYN flood attack.

Explanation:

Doing this is a symptom of an SYN flood attack. Attackers performing this type of DoS attack will try and open as many connections as possible but never fully finish the connection. This ultimately causes the system to use all of its computing power to try to resolve these failed connections which would cause the system to crash or become unresponsive. Therefore, denying service to potential clients if done correctly. This is just one of the many types of DoS attacks that exist.

thatking374
Yesterday
Computers and Technology
College
answered
Java Eclipse homework. I need help coding this
Project 14A - Basically Speaking

package: proj14A
class: TableOfBases

Create a project called TableOfBases with class Tester. The main method should have a for loop that cycles through the integer values 65 <= j <= 90 (These are the ASCII codes for characters A – Z). Use the methods learned in this lesson to produce a line of this table on each pass through
the loop. Display the equivalent of the decimal number in the various bases just learned (binary, octal, and hex) as well as the character itself:
Decimal Binary Octal Hex Character
65 1000001 101 41 A
66 1000010 102 42 B
67 1000011 103 43 C
68 1000100 104 44 D
69 1000101 105 45 E
70 1000110 106 46 F
71 1000111 107 47 G
72 1001000 110 48 H
73 1001001 111 49 I
74 1001010 112 4a J
75 1001011 113 4b K
76 1001100 114 4c L
77 1001101 115 4d M
78 1001110 116 4e N
79 1001111 117 4f O
80 1010000 120 50 P
81 1010001 121 51 Q
82 1010010 122 52 R
83 1010011 123 53 S
84 1010100 124 54 T
85 1010101 125 55 U
86 1010110 126 56 V
87 1010111 127 57 W
88 1011000 130 58 X
89 1011001 131 59 Y
90 1011010 132 5a Z

Answers

Answer:

que es eso no entiendo espero que te respondan

Johnson wants to load Solver in Microsoft Excel. For this, he clicks the series: File > Options > Add-Ins > Manage Box > X > Go > Add-ins available box > Solver Add-in check box > OK. What can X be in the procedure?A) COM Add-ins
B) Excel Add-ins
C) Disabled Items
D) XML Expansion Packs

Answers

Answer:

B) Excel Add-ins

Explanation:

Some Excel functions are available only when the add-in is installed. For example, the Analysis ToolPak or the Solver Add-in is not available in standard ribbons, you must install the add-in before you can use it.

Microsoft offers downloadable add-ins in each software of its Office suite, much like applications on mobile platforms. Here are some examples and how to install these add-ins.

These add-ins were introduced with the 2013 version of Office. Microsoft called them “Applications”. Since Office 2016, Microsoft has called them “Add-ins”. These are actually extensions (or add-ons) to Office.

Excel add-ins are useful because they help to maximize its functionality across various platforms.

This series of steps explain how to add Excel add-ins by using Solver.

To install the add-in, follow these steps:

1. On the File tab, click Options:

2. In the Excel Options dialog box, select the Add-ins tab:

3. In the Manage area, select Excel Add-ins, and then click the Go To Button

4. In the Add-ins dialog box, select the check box for each add-in that you want to use:

5. Then, Click on Ok.

Based on the given information about load Solver in Microsoft Excel, X would be the procedure of B:Excel Add-ins.

When add-in is installed, then gives room for some of the Excel functions to be available to use, it was introduced by Microsoft and it helps to maximize some functionality across various platforms.

As Johnson start loading the Solver in Microsoft Excel, He will follow these steps:

Go to File click on Options Add-Ins Manage Box Excel Add-ins and Ok.

We can conclude that the X in the process of using the Solver in Microsoft Excel is Excel Add-ins.

Learn more about Excel Add-ins on;

https://brainly.com/question/19295387

how do you copy from a file to another document

Answers

Answer:

you highlight it then double tap and click copy or after it is highlighted press ctrl and c together then to paste you double tap and click paste or you can press ctrl v

Explanation:

Answer: yes

Explanation:

Open File Explorer by pressing Windows+E and navigate to the file you want to copy. Highlight the files you want to copy, and then click “Copy” in the File menu or press Ctrl+C on the keyboard to add them to the clipboard. If you’d rather move items instead, highlight the files you want to move.

Define and describe NAS. Assume you must implement a shared file system within the cloud. What company would you select

Answers

Answer:

The answer is below

Explanation:

1. NAS which is an acronym for Network-attached storage is a file computer data storage whereby a server connected to a computer network allows numerous users and heterogeneous clients to possess data access from a consolidated storage capacity.

For example various users on a local area network having data access to the central storage through a standard Ethernet connection.

2. Rackspace: this is because it offers a wide range of cloud computing services including but not limited to cloud hosting that covers but no huge subscribers.

They have a huge and efficient capacity across the globe.

They also offer pay as you go, which can be cheaper to manage.

Create a program that displays a menu to select addition, subtraction, or multiplication. Using random numbers between 0 and 12 (including 0 and 12), present a math problem of the type selected to the user. Display a "correct" or "incorrect" message after the user enters their answer. In C++

Answers

Answer:

This question is answered using C++

#include<iostream>

#include <cstdlib>

#include <ctime>

using namespace std;

int main(){

   int ope, yourresult;

   cout<<"Select Operator: \n"<<"1 for addition\n"<<"2 for subtraction\n"<<"3 for multiplication\n";

   cout<<"Operator: ";

   cin>>ope;

   srand((unsigned) time(0));

   int num1 = rand() % 12;

   int num2 = rand() % 12;

   int result = 1;

   if(ope == 1){

       cout<<num1<<" + "<<num2<<" = ";

       result = num1 + num2;

   }

   else if(ope == 2){

       cout<<num1<<" - "<<num2<<" = ";

       result = num1 - num2;

   }

   else if(ope == 3){

       cout<<num1<<" * "<<num2<<" = ";

       result = num1 * num2;

   }

   else{

       cout<<"Invalid Operator";

   }

   cin>>yourresult;

   if(yourresult == result){

       cout<<"Correct!";

   }

   else{

       cout<<"Incorrect!";

   }

   return 0;

}

Explanation:

This line declares operator (ope) and user result (yourresult) as integer

   int ope, yourresult;

This prints the menu

   cout<<"Select Operator: \n"<<"1 for addition\n"<<"2 for subtraction\n"<<"3 for multiplication\n";

This prompts the user for operator

   cout<<"Operator: ";

This gets user input for operator

   cin>>ope;

This lets the program generates different random numbers

   srand((unsigned) time(0));

This generates the first random number

   int num1 = rand() % 12;

This generates the second random number

   int num2 = rand() % 12;

This initializes result to 1

   int result = 1;

If the operator selected is 1 (i.e. addition), this prints an addition operation and calculates the actual result

   if(ope == 1){

       cout<<num1<<" + "<<num2<<" = ";

       result = num1 + num2;

   }

If the operator selected is 2 (i.e. subtraction), this prints an subtracttion operation and calculates the actual result

   else if(ope == 2){

       cout<<num1<<" - "<<num2<<" = ";

       result = num1 - num2;

   }

If the operator selected is 3 (i.e. multiplication), this prints an multiplication operation and calculates the actual result

   else if(ope == 3){

       cout<<num1<<" * "<<num2<<" = ";

       result = num1 * num2;

   }

If selected operator is not 1, 2 or 3, the program prints an invalid operator selector

   else{

       cout<<"Invalid Operator";

   }

This gets user input

   cin>>yourresult;

This checks if user result is correct and prints "Correct!"

   if(yourresult == result){

       cout<<"Correct!";

   }

If otherwise, the program prints "Incorrect!"

   else{

       cout<<"Incorrect!";

   }

   return 0;

In the Solmaris Condominium Group database, the number of the condo unit needing service with service_id 6 is _____.

Answers

Answer:

C06

Explanation:

From the attached table or images of Solmaris Condominium Group database we can see that the "ServiceRequest" table has 'ServiceID 6' attached to 'CondoID 14'.

However, in the "CondoUnit" table, we have the 'CondoID 14' attached to 'UnitNum C06.'

Hence, In the Solmaris Condominium Group database, the number of the condo unit needing service with service_id 6 is "C06"

How many tables are needed to implement an REA data model that has five distinct entity-sets, two many-to-many relationships and three one-to-many relationships in a relational database?A. 5B. 7C. 8D. 10

Answers

Answer:

B

Explanation:

Im not sure tho so please dont get mad if its wrong

1. Assume that in an implementation of the RSA cryptosystem one modular squar- ing takes 75% of the time of a modular multiplication. How much quicker is one encryption on average if instead of a 2048-bit public key the short exponent e

Answers

Answer:

3 times faster

Explanation:

The full form of RMS is Rivest–Shamir–Adleman. It refers to the public key crypto-system which is mainly used for securing the data transmission. It is one of the oldest algorithm.

The time taken bu modular squaring is 75 percent of the time required by the modular multiplication. Therefore, one encryption works three times quicker on an average if the short exponent of [tex]$e=2^{16}+1$[/tex] is used instead of the 2048 bit public key.

A member function that allows the user of the class to change the value in a data member is known as

Answers

Answer:

an accessor function.

Explanation:

An accessor function can be regarded as"set and get function" it's function are seen in the accesment of private object member, it give room to know the value of instance variable even though it's not in the same class.

It should be noted that member function that allows the user of the class to change the value in a data member is known as an accessor function.

What is the difference between a master device in a Bluetooth network and a base station in an 802.11 network?

Answers

Answer:

In an 802.11, a master device in a bluetooth network organize themselves into a "Piconet" of up to 8 slave devices. In an 802.11, a base station is a receiver and transmitter that plays a role of the WIFI network.

Explanation:

802.11 is the original wireless specification and it was developed by IEEE. IEEE stands for Institute of Electrical and Electronic Engineers (IEEE).

In an 802.11, a master device in a bluetooth network organize themselves into a "Piconet" of up to 8 slave devices. In an 802.11, a base station is a receiver and transmitter that plays a role of the WIFI network.

For a data structure, such as a stack, who is responsible for throwing an exception if the stack is empty and a pop() is called:______.A. Application User.B. Data Structure Programmer.C. No one, you don't thow an exception in this case.D. End User Programmer.

Answers

Answer:

D. End-User Programmer.

Explanation:

A stack data structure is used to holds data for programs. The first data to go into a stack is always the last to be extracted (First-in-Last-out). Data is read into the stack with the push function and retrieved with the pop function.

When the stack is empty, it means there are no data left to pop from it. If a pop function is issued at this time, the program conventionally throws an error, there is no need for the end-user to write an exception handler for it because the end-user programmer has done that already.

What is one requirement for achieving Continuous Deployment

Answers

Answer:

You need to get everything in version control. You need to automate the entire environment creation process.

Explanation:

You need a deployment pipeline where you can create test and production environments, and then deploy code into them, entirely on demand.

hope this helped ^^

The one requirement for achieving Continuous Deployment is to get everything in version control. You need to automate the entire environment creation process.

What are the requirements to create test and production?

One need a deployment pipeline where you can create test and production environments, and then deploy code into them, entirely on demand. Development pipeline is a central part of continuous deployment.

Development pipeline  can be  used to provide quick feedback to the team during deployment. Development pipeline works in different ways and  software deployment can be divided in different stages and each stage is used to run a task to complete a deveploment on continuous basis.

System deployment is a challenging task that is an essential part of the software development lifecycle (SDLC), but it is almost completely overlooked by writers in favor of more exciting subjects like distributed object creation, components, or the newest SDK.

Therefore, The one requirement for achieving Continuous Deployment is to get everything in version control. You need to automate the entire environment creation process.

Learn more about environment on:

https://brainly.com/question/13107711

#SPJ2

Examples of applying successful visual design principles to bring a web page together are _________________. (Choose all that apply)

Question 2 options:

a) balance, contrast, and similarity


b) gestalt, unity, and hierarchy


c) gestalt, scale, and simplicity


d) balance, contrast, and unity


e) balance, control, and dominance

Answers

I think A & D but im note sure but I definitely think A is one of the options

The examples of applying successful visual design principles to bring a web page together include:

a) balance, contrast, and similarityd) balance, contrast, and unity

The importance of visual design is to improve the aesthetic appeal of a product or design by using suitable images, space, layout, color, typography, etc.

It should be noted that balance, contrast, similarity, and unity are important for the application of a successful visual design.

Read related link on:

https://brainly.com/question/14581705

Write an application that calculates the product of a series of integers that are passed to method product using a variable-length argument list. Test your method with several calls, each with a different number of arguments.

Answers

Answer:

The method written in C++ is as follows:

#include <iostream>

#include <stdarg.h>

using namespace std;

int prod(int listsnum,...) {

  va_list mylist;

  int product = 1;

  va_start(mylist, listsnum);

  for (int i = 0; i < listsnum; i++)

     product *= va_arg(mylist, int);

   

  va_end(mylist);

  return product;

}

Explanation:

This line defines the method along with the series of integers

int prod(int listsnum,...) {

This declares the variable-length list using va_list as the declaration

  va_list mylist;

This initializes product to 1

  int product = 1;

This initializes the variable-length list

  va_start(mylist, listsnum);

The following iteration calculates the product of the list

  for (int i = 0; i < listsnum; i++)

     product *= va_arg(mylist, int);

   

This ends the the variable-length list

  va_end(mylist);

This returns the product of the list

  return product;

}

To call the method from the main, make use of:

cout<<"Product: "<<prod(4, 2,3,4,5);

The first 4 in the list indicates the number of items in the list while the 4 other items represents the list elements

You can also make use of:

cout<<"Product: "<<prod(2, 6,5);

Please answer questions 2-12

Answers

Answer:

i never learned that

Explanation:

13. In cell A17, use the SUMIF function to display the total membership in 2023 for groups with at least 40 members

Answers

Answer:

On cell G16, type the formula "=SUMIF(G2:G11, ">=40")".

Explanation:

Formulas in Microsoft Excel are used to generate results or values to a cell. The formula must start with an equal sign. The formula above has the function "SUMIF" which is used to provide a sum of numeric values based on a condition.

The SUMIF function in excel combines a condition and a sum of the values which meets the stated condition. Hence, the SUMIF statement required on Cell A17 would be =SUMIF(C1:C50, '>=40')

The sumif syntax goes thus ; SUMIF(row_range, condition)

Assume the total membership count is in the cell A1 to A50.

Cells where the values are greater than or equal to 40 should be summed.

Hence, the required formula would be =SUMIF(C1:C50, '>=40')

Learn more : https://brainly.com/question/17130932

Which of the following tasks could be implemented as a filter using only a constant amount of memory (e.g., a couple of int or double variables and no arrays)? Mark all that apply.
For each, the input comes from standard input and consists of n real numbers between 0.0 and 1.0.

Print the sum of the squares of the n numbers
Print the maximum and minimum values of the n numbers
Print the percentage of numbers greater than the average of the n numbers
Print the median of the n numbers
Print the average of the n numbers
Print the n numbers in uniformly random order
Print the n numbers in increasing order

Answers

Answer:

Print the sum of the squares of the n numbers

Print the percentage of numbers greater than the average of the n numbers

Print the median f n numbers

Explanation:

The computer programs have different configurations based on the assigned tasks. The constant amount of memory is used by the cache. This is the new technology in the computer software which consumes only small amount of memory and activates once the task is assigned to it.

Write a program whose inputs are three integers, and whose output is the smallest of the three values.Ex: If the input is:7153the output is:3

Answers

Answer:

The program is written in C++ language and given below in explanation section. All bold faced words are C++ keywords and symbols. Nested         if-else decision branch is used to determine smallest number of all three integers. First of all you have input three integers then the program prints smallest integer of all

Explanation:

#include <iostream>

using namespace std;

int main() {

   int num1,num2,num3;

   cout<<"enter first integers"<<endl;

   cin>>num1;

   cout<<"enter second integers"<<endl;

   cin>>num2;

  cout<<"enter the third integers"<<endl;

   cin>>num3;

   if(num1<num2){

      if(num1<num3){

           cout<<"Smallest integer is "<<num1<<endl;

       } else{

           cout<<"Smallest integer is "<<num3<<endl;

       }

   }else {

       

      if(num2<num3){

           cout<<"Smallest integer is "<<num2<<endl;

       } else{

           cout<<"Smallest integer is "<<num3<<endl;

       }

   }

  return 0;

}

Other Questions
The concentration of dichlorodiphenyltrichloroethane (DDT - an infamous pesticide) in Lake Michigan has been declining exponentially over many years. In 1971, the DDT concentration was 13.00 ppm (parts per million). In 1984, the DDT concentration was 2.22 ppm.Using these data points, determine the exponential decay function to model the DDT concentration decline in terms of years, tt, where t=0t=0 represents the year 1971.A) Write your function as y = Ce^{rt}y=Ce^rt. Round your value of rr to four decimal places. B) Another way to write the function down is known as the half-life formula, written as y = C(0.5)^{t/H}y=C(0.5)^t/H, where HH is the time required for the concentration to get cut in half. Using the initial two data points, find the value of HH, rounded to 2 decimal places. Show all Algebraic work. C) The goal was to reduce the DDT concentration to 0.98 ppm by 1995. Was this possible according to your model? 18. Rewrite the following sentence using demonstrative adjectives, such as ce,cette, and ces, instead of definite articles.L'homme est assis sur la chaise et mange les pommes. If you place 950 kg of material into a mixer and discharge 895 kg of product, what percentage of the raw materials was discharged 10) What is the MAIN reason the author uses dialect when Aunt Pollyspeaks?A)to make her seem different from TomB)to show the educational level of Aunt PollyC)to show the regional background of Aunt PollyD)to make Aunt Polly's character more interesting You know whats weird lol?Im about to be 14 in january right, and i already have a job. I work 7 days a week.And my sister is 16, she doesnt have a job or do anything..chile- How many calories does killua eat a day (hunterxhunter) When was the jazz age? A. After World War IIB. Before the Civil WarC. Before the Great DepresonD. After the civil rights movement Adding transitions during the revision process improves an essay by 2. Is it safer to invest in stocks or bonds? An elements had three isotopes, determine the average atomic mass andelement.1x - percent abundance = 80%, mass = 1272x - percent abundance = 17%, mass = 1263x - percent abundance = 3% , mass = 128 answer question bellow!!! Who was a democratic leader of athens?perciclesthucydidessocratesphilip Which of the following cell organelles helps to transport large extracellular molecules into the cell?a. Vesiclesb. Lysosomec. Ribosomed. Mitochondria Ifyou borrow $500 at 5% for two years, how much will you pay back by the end of the term? A bad cause of tonsillitis can sometimes affect a person's breathing.How is this possible? IM DONE WITH THIS STUPID THING 50 POINTS TO THE PERSON WHO GETS IT ALL CORRECT. Savannah got her hair done. If it costs $120 and she tips her hairdresser 18%, how much tip will her hairdresser receive What is the least possible value of x if x^2 + 21 = 30 18 POINTS for finding 18 ANGLES on parallel lines and transversal Of the pairs of galaxies listed in the answer choices, which is the closest to the Milky Way Galaxy?