answersLogoWhite

0

What else can I help you with?

Related Questions

30 D hath S A J and N?

30 days hath September, April, June, and November.


30 D H S A J and N?

Days have September, April, June, and November


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


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(); }


How does a business apply for a dunn and bradstreet If it is a new corpoartion?

New businesses can register for a D&B D-U-N-S® Number for. There is no application process, rather a registration process, and it may take up to 30 days for the D-U-N-S Number to be issued.


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

standards


Which is a line of longitude 10 S or 50 N or 100 N or 30 E?

Longitudes cannot be N or S so it must be 30 E.


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


Write a program defind the sum of dijit of a number?

Void main () { Int n, r, s = 0 ; Printf (" Enter the number") Scanf ("% d", & n); While (n! = 0) { r = n%/10; s = s+r; n = n/10; s = s+r; n = n/10 } Printf ("sun of the dijit of a no. is % d; s)


What has the author S N D written?

S. N. D. has written: 'Sir William Howard, Viscount Stafford, 1612-1680'


Can someone make write you a program that tells somebody their zodiac signs the program asks a person their year month and day they were born and it should be for the Chinese Zodiac and Western?

#include <stdio.h> #include<string.h> main() { char s[80]; int d; clrscr(); printf("enter the month of your birthday: "); gets(s); if(!(strcmp(s, "january"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=19) printf("\n CAPRICORN"); else printf("\n AQUARIUS"); } if(!(strcmp(s, "february"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=18) printf("\n AQUARIUS"); else printf("\n PISCES"); } if(!(strcmp(s, "march"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=20) printf("\n PISCES"); else printf("\n ARIES"); } if(!(strcmp(s, "april"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=19) printf("\n ARIES"); else printf("\n TAURUS"); } if(!(strcmp(s, "may"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=20) printf("\n TAURUS"); else printf("\n GEMINI"); } if(!(strcmp(s, "june"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=20) printf("\n GEMINI"); else printf("\n CANCER"); } if(!(strcmp(s, "july"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=22) printf("\n CANCER"); else printf("\n LEO"); } if(!(strcmp(s, "august"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=22) printf("\n LEO"); else printf("\n VIRGO"); } if(!(strcmp(s, "september"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=22) printf("\n VIRGO"); else printf("\n LIBRA"); } if(!(strcmp(s, "october"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=22) printf("\n LIBRA"); else printf("\n SCORPIO"); } if(!(strcmp(s, "november"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=21) printf("\n SCORPIO"); else printf("\n SAGITTARIUS"); } if(!(strcmp(s, "december"))) { printf("\n enter the date of your birthday: "); scanf("%i", &d); if(d<=21) printf("\n SAGITTARIUS"); else printf("\n CAPRICORN"); } getch(); }