![]() |
Pls someone help me...
how to make a program that will make an output of a triangle figure composed of astirisks using C++.
|
Re: Pls someone help me...
So, you've just started on a programming course, eh? How did I guess.
Break it down into simple steps. Start with a program that prints a line of stars. Then change it so that it prints a line of n stars where you can specify the value of n (within the program). Code:
int n=5; |
Re: Pls someone help me...
can u teach me how to make a figure of triangle composed of astirisks by using loopings?
|
Re: Pls someone help me...
If what I just posted doesn't answer that question, then no, obviously I can't.
|
Re: Pls someone help me...
Code: CPP
|
Re: Pls someone help me...
Good work :)
But, please always post code within [code].....[/code] And, as you have not mentioned the return type of main(), it's int by default; so remember to add return 0; at the end. |
Re: Pls someone help me...
the coding is written for a simple floyd triangle looking like below!
* here th no. of lines is :7* * * * * * * * * * * * * * * * * * * * * * * * * * * Code:
#include<stdio.h> |
Re: Pls someone help me...
how to make multiplication table using c++?
|
Re: Pls someone help me...
What do you want the program to display?
Can you work out how to display part of that display? For example a multiplication table might read 1x2=2 2x2=4 3x2=6 Let's leave the difficult part of working out the solution for now, so let's write a program that just displays 1x2= 2x2= and so on. Can you work out how to do that? |
| All times are GMT +5.5. The time now is 12:29. |