Answer:
All Rights Reserved, Some Rights Reserved, Public Domain
Explanation:
Answer:
ion you d goal so P so o so so k well join so lil co got shot do don't still l help dunno look day cream still full from drive are all all all of it by no means fr by by cry see we co
1-plain text
2-hypertext
3-none of the above
4-none
5-confidentiality
6-private key
7-delivery receipt
8-delay
9-to do
10-permission
11-categories
12-complete
13-responses
14-signature
15-theme
man , that was crazy homework , not that much here in UK
Answer:
A. /
Explanation:
When creating a line in HTML, you start with a <ELEMENT> <em>ENTER TEXT</em> </ELEMENT>
Example:
<title> Mark me brainliest! <<u>/</u>title>
<u><em>Hope this helps!</em></u>
<em>-Isa</em>
Answer:
import java.util.Scanner;
public class num9 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter three numbers between 0 and 100");
double num1 = in.nextDouble();
double num2 = in.nextDouble();
double num3 = in.nextDouble();
double min = 0;
double sMin = 0;
double tMin = 0;
if(num1<num2 && num1<num3){
min = num1;
sMin = num2;
tMin = num3;
}
else if(num2<num1 && num2<num3){
min = num2;
sMin = num1;
tMin = num3;
}
else if(num3<num2 && num3<num1){
min = num3;
sMin = num1;
tMin = num2;
}
double average = (sMin+tMin)/2;
System.out.printf("The average of the two highest scores is:%.1f \n",average);
}
}
Explanation:
- Using Java programming language. The Scanner class is used to receive the three numbers. The user is prompted to enter a valid number between 0 and 100.
- Using three IF statements the minimum (min), second largerst (sMin) and the largest (tMin) of the three numbers is determined.
- the average of the sMin and tMin is calculated and printed to the console with the printf method to one decimal place.