Console Application C + + output diamond

Source: Internet
Author: User

//Rhombus.cpp: Defines the entry point of the console application. //#include"stdafx.h"#include<iostream>#include<math.h>using namespacestd;voidRhombus (Char,Char,int);int_tmain (intARGC, _tchar*argv[]) {Rhombus ('O',' ',5); return 0;}voidRhombus (CharChsymbol='*',CharChspaece=' ',intrownum= One){    //Char chsymbol= ' * '; //symbols//Char chspaece= '; //Space//int rownum=11; //number of rows, which can be exported as odd-numbered diamonds    intmidnum=rownum/2;//Middle Number     for(intI=0; i<rownum;i++){         for(intj=0; j<rownum;j++)        {            intSymbolnum=i>midnum?2* (Rownum-i)-1:2*i+1;//Number of symbols            intSpaecenum=abs (midnum-i);//Number of spaces                        if(J<spaecenum)//When looping to empty columnscout<<chspaece; Else if(J>=spaecenum&&j<spaecenum+symbolnum)//When looping to a symbol columncout<<Chsymbol; Else if(J>=spaecenum+symbolnum)//when the loop is over a symbol and then to a spacecout<<chspaece; } cout<<"\ n"; }}

Console Application C + + output diamond

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.