answersLogoWhite

0

What else can I help you with?

Related Questions

What are the five areas of the keyboard?

what are the four main parts of a keyboard and their function what are the four main parts of a keyboard and their function what are the four main parts of a keyboard and their function


What are four main parts of a plant?

the four main parts are the root,steam,leaves,


How many main parts does a four wheeler have?

How Many Main Parts Of Four wheeler


Write an application that displays in the command window a box an oval an arrow and a diamond using asterisks as follows?

the code for the box is: # include <iostream> using namespace std; void main () { cout << "*********\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*\t*\n"; cout << "*********\n"; the code for the oval is: # include <iostream> using namespace std; void main () { cout << " ***\n"; cout <<" * *\n"; cout <<"* *\n"; cout <<"* *\n"; cout <<"* *\n"; cout <<"* *\n"; cout <<"* *\n"; cout <<" * *\n"; cout << " ***\n"; the code for the arrow is: # include <iostream> using namespace std; void main () { cout << " * \n"; cout <<" ***\n"; cout <<"*****\n"; cout <<" * \n"; cout <<" * \n"; cout <<" * \n"; cout <<" * \n"; cout <<" * \n"; the code for the diamond: # include <iostream> using namespace std; void main () { cout << " *\n "; cout <<" * *\n"; cout<<" * *\n"; cout<<" * *\n"; cout<<"* *\n"; cout<<" * *\n"; cout<<" * *\n"; cout <<" * *\n"; cout << " *\n "; }


What are the four main parts of north America?

The four main parts of North America are:CanadaUnited StatesMexicoGreenland


What are the four main parts of the human body?

The four main parts of the human body are the head, trunk, arms, and legs. These parts comprise the basic structure of the human body, with each part encompassing various organs, tissues, and muscles that perform specific functions to support life.


The four main parts of a webpage?

no


What are the four main parts of a car's alternator?

The four main parts of a car's alternator are the regulator, rotor, stator, and diode bridge.


What are the 4 main parts of a flower?

the four main parts of the flower are the petals, sepals, stamen, and the pistil!?


What are the four main parts of the dclaration of independence?

The four main parts are 1 Preamable 2 Natural Rights 3 Kings wrongs 4 Independence


Why is the coats of arms important to iceland?

four main feature of coat arm


Program to generate a pattern a aba abcba?

#include<iostream.h> void main() { cout<<' '<<' '<<"a"<<'\n'; cout<<' '<<"a"<<"b"<<"a"<<'\n'; cout<<'a'<<'b'<<'c'<<'b'<<'a'<<"\n"; }