Here it is in Java for 5 numbers: (adapt for your programming language)
import java.util.Arrays
Public class Highestnumber
{
public static void main (String args[])
{
Scanner input = new Scanner( System.in );
int numberofinputs = 5;
//make an array to hold the numbers
int numbers[] = new Int[numberofinputs];
for (x=0;x<numberofinputs;x++)
{
System.out.print("Please input a number: ";
numbers[x] = input.nextInt();
}
//Sorts Numbers from least to greatest
Arrays.sort(numbers[]);
//gets highest number
int highestnum = numbers[numberofinputs-1]
//displays highest number
System.out.println("The highest number is:" + highestnum);
}
}
The number of credits does not determine equality to any specific program of study. Each program will have specific requirements. Once you are accepted to that program, successfully complete the requirements of that program, and the registrar indicates you have completed the program and have graduated, then you have that degree.
To write a C program to determine if something is odd or even you need to be a programmer. To write a program in C is complicate and only done by programmers.
This would be a jump to a line number that is non sequential. This is the best way to describe the process.
#include <stdio.h> int main() { printf("Program to find ODD or Even Number\n"); while(1) { int n = 0; printf("\nEnter a number(-1 for Exit): "); scanf("%d",&n); if( n 0) { printf("%d is a EVEN number.\n", n); } else { printf("%d is a ODD number.\n", n); } } return 0; }
The tricky part is getting the individual digits. There are basically two ways to do this: 1) Convert the number to a string, and use string manipulation to get the individual digits. 2) Repeatedly divide the number by 10. The digit is the remainder (use the "%" operator). To actually get the highest digit, initially assume that the highest digit is zero (store this to a variable, called "maxDigit" or something similar). If you find a higher digit, replace maxDigit by that.
It is 32767 for data-type int, 65535 for unsigned int.
Any program whose output is: " Don't waste your time! There is no highest number. Never was, never will be."
The "maximum" function.
To determine the number of valence electrons from an electron configuration, look at the highest energy level (n value) of the electrons in the configuration. The number of electrons in this highest energy level is the number of valence electrons.
see the program
That might refer to a calculator; to a computer; or to a spreadsheet program (which runs on a computer).
MIN is used to find the lowest number in a range. You would use MAX or LARGE to find the highest number in a range.
The port number is random
HCF stands for the Highest Common Factor. To determine this, you find the highest number possible that can be divide each of the two numbers in a fraction.
To determine the participation rate for a specific event or program, you can divide the number of people who participated by the total number of people eligible to participate, and then multiply by 100 to get the percentage. This will give you an idea of how many people took part in the event or program compared to the total number who could have participated.
There is no single computer program called "Xerox." The Xerox Corporation offers a number of different programs to support the use of some of the printers that they market, and for other functions.
Generally, computer science is all about using object-oriented programs to problem solve and create algorithms. By doing so, you can make program the computer to do simple tasks to extremely hard tasks. For example, you can create a program that lists all the factors of a number or a program in which you play a number guessing game with the computer! It gets more complex as you get more skilled with computer science. Eventually, you can learn how to add graphics into it! I