Write the definition of a function dashedLine, with one parameter, an int. If the parameter is negative or zero, the function does nothing. Otherwise it prints a complete line terminated by a new line character to standard output consisting of dashes (hyphens) with the parameter's value determining the number of dashes. The function returns nothing.
.
.
Click on the title for the solution
.
.
void dashedLine(int a)
{
if (a > 0)
{
int i;
for (i = 0; i < a; i++)
{
cout<<("\n", '-');
}
{
cout<<("\n");
}
return;
}}
.
Click on the title for the solution
.
.
This is the answer:
:
void dashedLine(int a)
{
if (a > 0)
{
int i;
for (i = 0; i < a; i++)
{
cout<<("\n", '-');
}
{
cout<<("\n");
}
return;
}}
Comments
Post a Comment