answersLogoWhite

0

What else can I help you with?

Related Questions

What is the Graph for n greater than 1?

It is the line segment to the right of n = 1.


Lines k and n are perpendicular. if the slope of line k is -6 what is the slope of line n?

If lines k and n are perpendicular, the slope of line n is the negative reciprocal of the slope of line k. Given that the slope of line k is -6, the slope of line n would be ( \frac{1}{6} ). This is because the product of the slopes of two perpendicular lines equals -1.


A full binary tree with n leaves contains?

2n-1


What equation is starting with two every consecutive line has a number that is one less than twice the previous line?

It is Un = 2^(n-1) + 1 for n = 1, 2, 3, ...


How much hydrogen atoms dose ammonia?

Ammonia contains N and H. It contains 3 H atoms.


What is a sonic poem?

i think sonic poem in English is a love poem with rhythm n it is 14 lines


How do you get the output 1 in first line 23 in next line and 456 in next line and so on?

It can be done with dark magic or a double loop: num= 0; for (line=1; line<=7; ++line) { for (i=1; i<=line; ++i) { printf ("%d", ++num); } putchar ('\n'); }


Write a program to Print pyramid of numbers using loops in c?

#include <stdio.h> #include <conio.h> void main() { int height, line, i; clrscr(); scanf("%d", &height); for (i = 0; i < height - 1; ++i) printf(" "); printf("1\n"); for (line = 1; line < height; ++line) { for (i = 0; i < height - line - 1; ++i) printf(" "); for (i = 0; i < line; ++i) printf("%d", line + 1); printf(" "); for (i = 0; i < line; ++i) printf("%d", line + 1); printf("\n"); } getch(); }


How many ways can 6 people stand in line?

There are n! (n factorial) ways that n people can stand in line. So six people can stand in line in: 1*2*3*4*5*6 = 720 different ways


How do you write an acrostic poem for hands?

Acrostic poems require a line representing each of the letters in the chosen word, so to write one about the word hands, you would start line 1 of your poem with an H, line 2 with an A, line 3 with an N, line 4 with a D, and line 6 with an S. Here is an example: Hold my hands Although they are cold and shaking, and Not comforting or calm. Do not pull away, please. Stay with me.


A poem of four lines is a n?

quatrain


How do You create a n by m matrix which contains 13 numbers?

It is either a row vector (1 x m matrix) or a column vector (n x 1 matrix).