answersLogoWhite

0

Search results

Emmy von Rhoden has written:

'Der Trotzkopf'

1 answer


Emmy von Rhoden was born on November 15, 1829, in Magdeburg, Germany.

1 answer


Emmy von Rhoden died on April 17, 1885, in Dresden, Germany.

1 answer


Emmy Rosenfeld has written:

'Neue Studien zur Lyrik von Friedrich von Spee'

1 answer


Still have questions?
magnify glass
imp

Emmy von Quistorp (1886-1959)

1 answer


Max von der Gru n has written:

'Fahrtunterbrechung und andere Erza hlungen'

1 answer


The Case of Thomas N. was created in 1987.

1 answer


The Case of Thomas N. has 214 pages.

1 answer


/* write a program to print Days of Week using switch-case structure */

#include<stdio.h>

#include<conio.h>

void main()

{

int n;

clrscr();

printf("\n Enter Day of weak as Number 1 to 7 ");

scanf("%d",&n);

switch(n)

{

case 1:

printf("\n MONDAY ");

case 2:

printf("\n TUESDAY");

case 3:

printf("\n WEDNESDAY");

case 4:

printf("\n THURSDAY");

case 5:

printf("\n FRIDAY");

case 6:

printf("\n SATURDAY");

case 7:

printf("\n SUNDAY");

default :

printf("\n no operation is required");

}

getch();

}

1 answer


#include<iostream>

#include<conio.h> // for _getch()

void action1_1_1() { std::cout << "Performing action 1.1.1\n\n"; }

void action1_1_2() { std::cout << "Performing action 1.1.2\n\n"; }

void action1_1_3() { std::cout << "Performing action 1.1.3\n\n"; }

void action1_2_1() { std::cout << "Performing action 1.2.1\n\n"; }

void action1_2_2() { std::cout << "Performing action 1.2.2\n\n"; }

void action1_2_3() { std::cout << "Performing action 1.2.3\n\n"; }

void action1_3_1() { std::cout << "Performing action 1.3.1\n\n"; }

void action1_3_2() { std::cout << "Performing action 1.3.2\n\n"; }

void action1_3_3() { std::cout << "Performing action 1.3.3\n\n"; }

void action2_1_1() { std::cout << "Performing action 2.1.1\n\n"; }

void action2_1_2() { std::cout << "Performing action 2.1.2\n\n"; }

void action2_1_3() { std::cout << "Performing action 2.1.3\n\n"; }

void action2_2_1() { std::cout << "Performing action 2.2.1\n\n"; }

void action2_2_2() { std::cout << "Performing action 2.2.2\n\n"; }

void action2_2_3() { std::cout << "Performing action 2.2.3\n\n"; }

void action2_3_1() { std::cout << "Performing action 2.3.1\n\n"; }

void action2_3_2() { std::cout << "Performing action 2.3.2\n\n"; }

void action2_3_3() { std::cout << "Performing action 2.3.3\n\n"; }

void action3_1_1() { std::cout << "Performing action 3.1.1\n\n"; }

void action3_1_2() { std::cout << "Performing action 3.1.2\n\n"; }

void action3_1_3() { std::cout << "Performing action 3.1.3\n\n"; }

void action3_2_1() { std::cout << "Performing action 3.2.1\n\n"; }

void action3_2_2() { std::cout << "Performing action 3.2.2\n\n"; }

void action3_2_3() { std::cout << "Performing action 3.2.3\n\n"; }

void action3_3_1() { std::cout << "Performing action 3.3.1\n\n"; }

void action3_3_2() { std::cout << "Performing action 3.3.2\n\n"; }

void action3_3_3() { std::cout << "Performing action 3.3.3\n\n"; }

void submenu1_1()

{

while (true)

{

std::cout

<< "SUBMENU 1.1\n===========\n\n"

<< "1 - action 1.1.1\n"

<< "2 - action 1.1.2\n"

<< "3 - action 1.1.3\n"

<< "X - exit to submenu 1\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action1_1_1(); break;

case '2': action1_1_2(); break;

case '3': action1_1_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu1_2()

{

while (true)

{

std::cout

<< "SUBMENU 1.2\n===========\n\n"

<< "1 - action 1.2.1\n"

<< "2 - action 1.2.2\n"

<< "3 - action 1.2.3\n"

<< "X - exit to submenu 1\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action1_2_1(); break;

case '2': action1_2_2(); break;

case '3': action1_2_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu1_3()

{

while (true)

{

std::cout

<< "SUBMENU 1.3\n===========\n\n"

<< "1 - action 1.3.1\n"

<< "2 - action 1.3.2\n"

<< "3 - action 1.3.3\n"

<< "X - exit to submenu 1\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action1_3_1(); break;

case '2': action1_3_2(); break;

case '3': action1_3_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu2_1()

{

while (true)

{

std::cout

<< "SUBMENU 2.1\n===========\n\n"

<< "1 - action 2.1.1\n"

<< "2 - action 2.1.2\n"

<< "3 - action 2.1.3\n"

<< "X - exit to submenu 2\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action2_1_1(); break;

case '2': action2_1_2(); break;

case '3': action2_1_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu2_2()

{

while (true)

{

std::cout

<< "SUBMENU 2.2\n===========\n\n"

<< "1 - action 2.2.1\n"

<< "2 - action 2.2.2\n"

<< "3 - action 2.2.3\n"

<< "X - exit to submenu 2\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action2_2_1(); break;

case '2': action2_2_2(); break;

case '3': action2_2_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu2_3()

{

while (true)

{

std::cout

<< "SUBMENU 2.3\n===========\n\n"

<< "1 - action 2.3.1\n"

<< "2 - action 2.3.2\n"

<< "3 - action 2.3.3\n"

<< "X - exit to submenu 2\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action2_3_1(); break;

case '2': action2_3_2(); break;

case '3': action2_3_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu3_1()

{

while (true)

{

std::cout

<< "SUBMENU 3.1\n===========\n\n"

<< "1 - action 3.1.1\n"

<< "2 - action 3.1.2\n"

<< "3 - action 3.1.3\n"

<< "X - exit to submenu 3\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action3_1_1(); break;

case '2': action3_1_2(); break;

case '3': action3_1_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu3_2()

{

while (true)

{

std::cout

<< "SUBMENU 3.2\n===========\n\n"

<< "1 - action 3.2.1\n"

<< "2 - action 3.2.2\n"

<< "3 - action 3.2.3\n"

<< "X - exit to submenu 3\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action3_2_1(); break;

case '2': action3_2_2(); break;

case '3': action3_2_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu3_3()

{

while (true)

{

std::cout

<< "SUBMENU 3.3\n===========\n\n"

<< "1 - action 3.3.1\n"

<< "2 - action 3.3.2\n"

<< "3 - action 3.3.3\n"

<< "X - exit to submenu 3\n\n";

int i = _getch();

switch ((char) i)

{

case '1': action3_3_1(); break;

case '2': action3_3_2(); break;

case '3': action3_3_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu1()

{

while (true)

{

std::cout

<< "SUBMENU 1\n=========\n\n"

<< "1 - sub-menu 1.1\n"

<< "2 - sub-menu 1.2\n"

<< "3 - sub-menu 1.3\n"

<< "X - exit to main menu\n\n";

int i = _getch();

switch ((char) i)

{

case '1': submenu1_1(); break;

case '2': submenu1_2(); break;

case '3': submenu1_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu2()

{

while (true)

{

std::cout

<< "SUBMENU 2\n=========\n\n"

<< "1 - sub-menu 2.1\n"

<< "2 - sub-menu 2.2\n"

<< "3 - sub-menu 2.3\n"

<< "X - exit to main menu\n\n";

int i = _getch();

switch ((char) i)

{

case '1': submenu2_1(); break;

case '2': submenu2_2(); break;

case '3': submenu2_3(); break;

case 'X':

case 'x': return;

}

}

}

void submenu3()

{

while (true)

{

std::cout

<< "SUBMENU 3\n=========\n\n"

<< "1 - sub-menu 3.1\n"

<< "2 - sub-menu 3.2\n"

<< "3 - sub-menu 3.3\n"

<< "X - exit to main menu\n\n";

int i = _getch();

switch ((char) i)

{

case '1': submenu3_1(); break;

case '2': submenu3_2(); break;

case '3': submenu3_3(); break;

case 'X':

case 'x': return;

}

}

}

int main()

{

while (true)

{

std::cout

<< "MAIN MENU\n=========\n\n"

<< "1 - sub-menu 1\n"

<< "2 - sub-menu 2\n"

<< "3 - sub-menu 3\n"

<< "X - exit program\n\n";

int i = _getch();

switch ((char) i)

{

case '1': submenu1(); break;

case '2': submenu2(); break;

case '3': submenu3(); break;

case 'X':

case 'x': return 0;

}

}

}

1 answer


The plural of the proper noun Emmy is usually Emmys, and very rarely Emmies. This is a trademark name, and therefore distinct from abbreviations that use upper and lower case. It is also seen using an apostrophe, but this is technically erroneous.

To avoid having to decide, you can always use "Emmy awards."

1 answer



The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

2 answers


Emmy Robbin goes by Emmy.

1 answer


The cast of Im Busch von Mexiko - 1967 includes: Anita Bucher as Stimme Thea Grodtzinsky Paul Henckels Emmy Julich as Hedwig Maier Gerhart Lippert as Rundfunksprecher

1 answer


  1. #include
  2. main()
  3. {
  4. char ch;
  5. clrscr();
  6. pritnf("\nEnter any character:");
  7. fflush(stdin);
  8. scanf("%c",&ch);
  9. if (ch 'U' ch = 'u')
  10. {
  11. printf("\n The entered character %c is Vowel.\n", ch);
  12. }
  13. else
  14. {
  15. printf("\nThe entered character %c is not Vowel.\n",ch);
  16. }
  17. }

5 answers


Best case for insertion sort is O(n), where the array is already sorted. The worst case, where the array is completely reversed, is O(n*n).

3 answers


Emmy Gyori goes by Em.

2 answers


Emmy Buckner goes by Emmy Buckner.

1 answer


The best and worst case time complexity for heapsort is O(n log n).

1 answer


There is no worst case for merge sort. Each sort takes the same amount of steps, so the worst case is equal to the average case and best case. In each case it has a complexity of O( N * log(N) ).

5 answers


nX in this case this says that n multiplys X by a factor of n

Xn in this case this says that X is to the power of factor n

not really another other case I can think of. Not sure what you are asking

1 answer


The cast of Die verwunschene Prinzessin - 1919 includes: Ernst Behmer Olga Dalzell Olga Engl Eva May Johannes Riemann Leopold von Ledebur Anna von Palen Emmy Wyda

1 answer


The cast of Krawattenmacher - Der Wucherer von Berlin - 1922 includes: Ida Andorffy Emmy Denner Richard Franz Stavy Greder Margarete Kupfer Rolf Loer Leo Sloma

1 answer



Merge sort is O(n log n) for both best case and average case scenarios.

2 answers


Emmy Albiin's birth name is Emmy Axelina Svensson.

1 answer


The upper case N has no line of symmetry because if you cut the N in half in any ways it will still not be symmetrical.

1 answer


The best case time complexity of heapsort is O(n log n), where n is the number of elements in the input array.

1 answer


The worst case time complexity of heapsort is O(n log n), where n is the number of elements in the input array.

1 answer



Emmy is a nickname for the image orthicon tube used in television cameras.

1 answer


She has no Emmy Awards.

1 answer


#include <stdio.h>

int main()

{

int month,date;

printf("Enter the month and date of your birth in the format mm-dd:\n");

scanf("%d-%d",&month,&date);

if(month<1month>12date<1date>31) {

printf("That is not a valid date.\n");

return 1;

}

printf("Your zodiac sign is ");

switch(month) {

case 1:

if (date<20) printf("Capricorn\n");

else printf("Aquarius\n");

break;

case 2:

if (date<19) printf("Aquarius\n");

else printf("Pisces\n");

break;

case 3:

if (date<21) printf("Pisces\n");

else printf("Aries\n");

break;

case 4:

if (date<20) printf("Aries\n");

else printf("Taurus\n");

break;

case 5:

if (date<21) printf("Taurus\n");

else printf("Gemini\n");

break;

case 6:

if (date<21) printf("Gemini\n");

else printf("Cancer\n");

break;

case 7:

if (date<23) printf("Cancer\n");

else printf("Leo\n");

break;

case 8:

if (date<23) printf("Leo\n");

else printf("Virgo\n");

break;

case 9:

if (date<23) printf("Virgo\n");

else printf("Libra\n");

break;

case 10:

if (date<23) printf("Libra\n");

else printf("Scorpio\n");

break;

case 11:

if (date<22) printf("Scorpio\n");

else printf("Sagittarius\n");

break;

case 12:

if (date<22) printf("Sagittarius\n");

else printf("Capricorn\n");

break;

}

return 0;

}

1 answer


If it is an unbalanced binary tree, O( ln( n ) / ln( 2 ) ) is best-case. Worst case is O( n ).

If it is balanced, worst case is O( ln( n ) / ln( 2 ) ).

1 answer


The worst case occurs when data is already sorted where the complexity is O(n^2) instead of the well known O(n log n)

1 answer


The worst case time complexity of heap sort is O(n log n), where n is the number of elements in the input array.

1 answer


here's my code to count the letters in a phrase...can anyone tell me what modification i should make in this program ...to make it count the word size and diaplaying according to the word size...


#include int main(){int phrase; int aCount = 0;int bCount = 0;int eCount = 0;int hCount = 0;int iCount = 0;int nCount = 0;int oCount = 0;int qCount = 0;int rCount = 0; int sCount = 0;int tCount = 0;int uCount = 0;printf( "Enter the phrase.\n" );printf( "Enter the EOF character to end input.\n" );while ( ( phrase = getchar() ) != EOF ) {switch ( phrase ) {case 'A':case 'a':++aCount;break;case 'B':case 'b':++bCount;break;case 'E':case 'e':++eCount;break;case 'H':case 'h':++hCount;break;case 'I':case 'i':++iCount;break;case 'N':case 'n':++nCount;break;case 'O':case 'o':++oCount;break;case 'Q':case 'q':++qCount;break;case 'R':case 'r':++rCount;break;case 'S':case 's':++sCount;break;case 'T':case 't':++tCount;break;case 'U':case 'u':++uCount;break;case '\n':case '\t':case ' ':case ',':case ':':break;default:printf( "Incorrect phrase entered." );printf( " Enter a new phrase.\n" );break;}}printf( "\nTotals for phrase are:\n" );printf( "A: %d\n", aCount );printf( "B: %d\n", bCount );printf( "E: %d\n", eCount );printf( "H: %d\n", hCount );printf( "I: %d\n", iCount );printf( "N: %d\n", nCount );printf( "O: %d\n", oCount );printf( "Q: %d\n", qCount );printf( "R: %d\n", rCount );printf( "S: %d\n", sCount );printf( "T: %d\n", tCount );printf( "U: %d\n", uCount );return 0; /* indicate program ended successfully */} /* end function main */the output should be like....Enter the phrase.Enter the EOF character to end input.To be, or not to be: that is the question:^ZTotals for phrase are:
o o 1 0 2 5 3 2 4 1 and so on... it should display according to the word size...

1 answer


what king von said "imma mfk*** promble lil n*****

1 answer


An Emmy is like an Oscar but it only relates to TV.

1 answer




Emmy Reed is 5' 3".

1 answer


Emmy Destinn was born in 1878.

1 answer


Emmy Destinn died in 1930.

1 answer


Emmy Elffors was born in 1889.

1 answer


Emmy Elffors died in 1950.

1 answer


Emmy Buckner is 5' 2".

1 answer


Emmy Harrington is 5' 4".

1 answer


Emmy Krüger died in 1976.

1 answer