answersLogoWhite

0

Snow White and the 7 dwartfes

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How many sub shells are in n shell?

4 s , p , d , 7


How many sub shell are there in N shell?

4 s , p , d , 7


How do you craft a diamond shovel in Minecraft?

you need n d n n s n n s n n = nothing s = stick d = diamond


What is a 7 letter word for forever?

E t e r n i t y e n d l e s s


What 7 letter word uses these letters 'd e e l a n s'?

Leadens


How do you get the reciprocal of the divisor?

for a integer n, we call d the divisor of n if d divides n without leaving a remainder. So, for example, 49/7=7 and 7 is a divisor or a factor of 49. ( n=49, d=7 in this case) Since 7 is the divisor the reciprocal of 7 is just 1/7. In general is n is a divisor, 1/n is the reciprocal.


When was A. D. S. N. Prasad born?

A. D. S. N. Prasad was born on 1952-03-29.


A program to find sum of digits repeatedly until a single digit is obtained?

#include<stdio.h> #include<conio.h> main() { int n,s=0,sum=0,i,d; printf("enter the number"); scanf("%d",&n); while(n>0) { d=n%10; s=s+d; n=n/10; } while(s>0) { i=s%10; sum=sum+i; s=s/10; } printf("%d",sum); getch(); }


What 5 6 or 7 letter words can you make with letters t w i n s c d a?

Twins


What word has the letters t a r a d n s s d in it?

standards


When your dividing a whole number by a fraction with a numerator of 1 how do you fing the quotient?

Suppose n is a whole number and the fraction is 1/d where d is also a whole number.Then n / (1/d) = n * (d/1) = n*dFor example, 7 / (1/5) = 7*(5/1) = 7*5 = 35


What is the Programme to calculate the sum of a five digit number?

#include #include void main(){long n,s=0,t,d;clrscr();cout > n;t=n;while(n>0){d=n%10;s=s+d;n=n/10;}cout