#include<iostream.h>
#include<conio.h>
void main(){
int Number[10];
cout<<"Enter ten numbers";
for (int i=0;i<10;i++)
cin>>Number[i];
int Big=0;
for(int j=0;j<10;j++){
if (Big<Number[i])
Big=Number[i];
}
cout<<"gretest Number:"<<Big;
getch();
}
The greatest number less than 45,000 is 44,999. If you're asking for the greatest number that can be formed using the digits of 45,000, it would be 54,000. However, if you meant the greatest number in a mathematical sense, there is no defined greatest number, as numbers extend infinitely.
.961
One
2.2.3 and
The greatest number that can be formed using the digits of 70000 is 77000, while the least number is 00077, which can be written as 77. This is because leading zeros do not count in standard numerical notation. Therefore, in terms of whole numbers, the greatest is 77000 and the least is 77.
87603
No.
To find the greatest number among a set of numbers provided as command line arguments in a Shell script, you can use a loop to iterate through the arguments. Here's a simple example: #!/bin/bash greatest=$1 for num in "$@"; do if (( num > greatest )); then greatest=$num fi done echo "The greatest number is: $greatest" Save this script as find_greatest.sh, make it executable with chmod +x find_greatest.sh, and run it by passing numbers as arguments, like ./find_greatest.sh 3 5 1 8.
12
The greatest number less than 45,000 is 44,999. If you're asking for the greatest number that can be formed using the digits of 45,000, it would be 54,000. However, if you meant the greatest number in a mathematical sense, there is no defined greatest number, as numbers extend infinitely.
If you place the numbers on the number line, they go from the least to the greatest as you go from left to right.
.961
int Greatest(int X, int Y){if(X > Y)return X;return Y;}
One
2.2.3 and
The greatest number that can be formed using the digits of 70000 is 77000, while the least number is 00077, which can be written as 77. This is because leading zeros do not count in standard numerical notation. Therefore, in terms of whole numbers, the greatest is 77000 and the least is 77.
Yes.First find the HCF of two of the numbers, then find the HCF of that answer and the third number.In this way you could find the HCF of as many numbers as you want.