Answer:
if (isIsosceles) {
isoCount++;
triangleCount++;
polygonCount++;
}
Explanation:
The above will work in C/C++/Java/JavaScript, but you didn't specify which language you need. Anyway the principle stays the same.
Answer:
import java.util.Scanner;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int numbers[] = new int[3];
System.out.print("Enter first number: ");
numbers[0] = scan.nextInt();
System.out.print("Enter second number: ");
numbers[1] = scan.nextInt();
System.out.print("Enter third number: ");
numbers[2] = scan.nextInt();
scan.close();
Arrays.sort(numbers);
if (numbers[0] == numbers[2]) {
System.out.println("All the numbers are equal");
} else {
System.out.printf("Greatest number: %d\n", numbers[2]);
}
}
}
Answer:1. is 2B
AND THE 2nd. Press enter key
Explanation: i saw it in the comments and it worked, this is more obvious to see
Answer:
Malware
Explanation:
It has the following characteristics:
• They are the most common in the network, and the difference with computer viruses is that they do not need user intervention.
• has the characteristic of replicating itself to expand through the networks to which a device is connected.
• When entering a computer, the worm tries to obtain the addresses of other computers through your contact lists, to infect them as well.
• They do not have to manipulate any program or make the computer malfunction, which makes them a little more difficult to detect.
• Take into account that Malware is "malicious software".
Answer:
Codecademy. Codecademy is one of the most popular free coding websites for beginners.
freeCodeCamp.
Coursera.
edX.
Codewars. ..
Code Conquest. .
GA Dash. .
Khan Academy (highly recommed)
: