answersLogoWhite

0


Best Answer

0.2

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write 2-10 n decimal number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is 220 as a decimal?

If you're looking for 220 percent of some number n n * 2.2 = 220 percent of n n * x.yz = xyz percent of n In other words, just shift the decimal 2 places to the left for any problem like this.


What is the all even number between 210 to 240?

They are numbers of the form 210 + 2*n where n = 1, 2, 3, ... 15.


Is it possible to completely write out an irrational number in decimal form?

no. irrational numbers are always infininately long, otherwise the could be represented as a fraction by multiplying by 10^n and dividing by 10^n where n is a number large enough to make the number a number with no decimals.


How do you express a number in scientific notation's and scientific notation's to decimal notation's?

Assuming x is your number, x * 10^n = x moved n decimal places. When n is positive, move the decimal point n places to the right. When n is negative, move the decimal point n places to the left. When n is 0, do nothing.


How do you get the decimal point in antilog?

If a number has an antilog whose integer part is n, then the number has n-1 digits before the decimal point.


How do you write a number less than a number?

n-n


How do you write a C-program to convert an Octal number to a Decimal number?

very simple way yr:int main(){int o;printf("\n Enter an octal number:");scanf("%o",&o);printf("The required decimal number is %d",o);getch();}


Write a C program to add an integer and a decimal number?

include <iostream> using namespace std; int main() { int n; // number to convert to binary while (cin >> n) { if (n > 0) { cout << n << " (decimal) = "; while (n > 0) { cout << n%2; n = n/2; } cout << " (binary) in reverse order" << endl; } else { cout << "Please enter a number greater than zero." << endl; } } return 0; }//end main


How do you find the 20Th triangular number?

The 20th triangular number is 20*21/2 = 210


How would you write 37 300 as a decimal?

37/300:= 37 ÷ 300= 0.1233 n decimal


How do you put decimal to fraction?

If decimal number has n digits after the decimal point then the numerator of the fraction is the decimal number without the decimal point and the denominator is 1 followed by n zeros. That is the fractional representation of the decimal number. You may need to simplify. For example, 27.356 : there are three digits after the decimal point so n = 3. Therefore the fraction is 27356/1000 which can be simplified to 6839/250. Or 0.00076 : there are 5 digits after the decimal point so n = 5. Therefore the fraction is 76/100000 which can be simplified to 19/25000.


Write a Recursive function to find decimal equivalent of binary?

main(){int n;printf("\n Enter any number:");scanf("%d", &n); dec2bin(n);}dec2bin(int n){if(n == 0)return ; else{dec2bin (n/2);printf("%d", n%10);}}