* 算法设计:
#include<iostream> using namespace std; int main() { int i,j,k,g; for(i=0;i<6;i++) { for(j=0;j<6-i;j++) cout<<" "; cout<<"*"; for(k=0;k<2*i-1;k++) cout<<" "; if(i>0) cout<<"*"; cout<<endl; if(i==5) for(g=0;g<13;g++) { cout<<"*"; } } cout<<endl; }
二、运行结果:
三、心得体会:通过这几次的编写程序,我的自信一下子提高了,我也会编写程序了,尽管对于有些人这种程序会很简单,但对于我初学者来说已经很不容易啦,以后会更加努力学习的。 四、知识点总结:学会运用假设语句来编写分段函数,在编写过程中需要注意格式正确