题解 | #牛牛的字符菱形#

牛牛的字符菱形

https://www.nowcoder.com/practice/11a5040fa894430f9d25fda1be37ddc8

/*
1  2=abs(i-3)  1=5-abs(i-3)*2   3=5-abs(i-3)
2  1=abs(i-3)  3=5-abs(i-3)*2   4=5-abs(i-3)
3  0=abs(i-3)  5=5-abs(i-3)*2   5=5-abs(i-3)
4  1=abs(i-3)  3=5-abs(i-3)*2   4=5-abs(i-3)
5  2=abs(i-3)  1=5-abs(i-3)*2   3=5-abs(i-3)
*/
#include <stdio.h>
int main(){
    char c1;
    scanf("%c",&c1);
    for(int i=1; i<=5; i++){
        for(int k=1; k<=abs(i-3); k++) printf(" ");
        for(int z=1; z<=5-abs(i-3)*2; z++) printf("%c",c1);
        printf("\n");
    }
    return 0;
}

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务