C 练习实例6
题目:用*号输出字母C的图案。
程序分析:可先用'*'号在纸上写出字母C,再分行输出。
程序源代码:
实例
// Created by www.runoob.com on 15/11/9.
// Copyright © 2015年 菜鸟教程. All rights reserved.
//
#include "stdio.h"
int main()
{
printf("用 * 号输出字母 C!\n");
printf(" ****\n");
printf(" *\n");
printf(" * \n");
printf(" ****\n");
}
以上实例输出结果为:
用 * 号输出字母 C! **** * * ****
实例
#include <stdio.h>
int main() {
// 定义字符图形
const char *c_pattern[] = {
" ****",
" *",
" *",
" ****"
};
// 输出字符图形
printf("用 * 号输出字母 C!\n");
for (int i = 0; i < sizeof(c_pattern) / sizeof(c_pattern[0]); i++) {
printf("%s\n", c_pattern[i]);
}
return 0;
}
int main() {
// 定义字符图形
const char *c_pattern[] = {
" ****",
" *",
" *",
" ****"
};
// 输出字符图形
printf("用 * 号输出字母 C!\n");
for (int i = 0; i < sizeof(c_pattern) / sizeof(c_pattern[0]); i++) {
printf("%s\n", c_pattern[i]);
}
return 0;
}
yuanjuntao
562***029@qq.com
参考实例:
yuanjuntao
562***029@qq.com
Loura鱼
315***6108@qq.com
参考方法:
Loura鱼
315***6108@qq.com
只猪侠
582***014@qq.com
参考方法:
只猪侠
582***014@qq.com
小智
222***1705@qq.com
参考方法:
小智
222***1705@qq.com
郑方形
124***7257@qq.com
参考方法:
郑方形
124***7257@qq.com
服了
146***4908@qq.com
参考:
服了
146***4908@qq.com
大宅院里的三表哥
gul***r@outlook.com
使用 putchar() 函数打印单个字符:
大宅院里的三表哥
gul***r@outlook.com