【C++】数字菱形(四)
程序员文章站
2022-04-21 23:49:34
...
下面是源代码:
#include <iostream>
using namespace std;
int main() {
int i,j,n;
cout<<"输入数字n:";
cin>>n;
for(i=1;i<=n;i++){
for(j=1;j<=n+1-i;j++){
cout<<" ";//这里是两个空格;
}
for(j=1;j<=2*i-1;j++){
cout<<" "<<i;
}
cout<<endl;
}
for(i=n-1;i>=1;i--){
for(j=1;j<=n+1-i;j++){
cout<<" ";//两个空格;
}
for(j=1;j<=2*i-1;j++){
cout<<" "<<i;
}
cout<<endl;
}
return 0;
}
上一篇: 请教怎么获取用户的来源
下一篇: php SQL防注入代码集合_php技巧