簡單ASCII ART生成器
大家好,歡迎來訪。
我是水明,在2016年1月13日凌晨申請了這個博客。
新人一個,不敢大聲說話,先潛伏一段時間吧~
近日看《c++ primer plus》,裡面有一句“Houdini 曾經在只使用轉義序列的情況下,繪製了一幅哈德遜河圖畫;他無疑是一位轉義序列藝術大師。”有感而發,編寫了一個簡單的ASCII ART生成器。
這是貼吧“滑稽”表情:
這是博主所在學院的院徽:
實現過程:
要輸出圖形
--@@
---@@@
@@
可看成輸出2個”-“加2個”@“,輸出換行;輸出3個”-“加3個”@“。
輸入數據是
2 2 0 0
3 3 0 0
0 2 0 0
(數據看書去像玩過的”數圖“游戲一樣。數據的採集用ps完成。)
定義一個string類型的函數,參數是字元c1數n1和字元c2數n2,返回string(n1,c1)+string(n2,c2)。
換行的地方,當n2=0時輸出換行。
代碼:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
const char c1=' ';
const char c2='@';
int main()
{
ifstream cin("data.txt");
string str(int,int);
int n1,n2;
while (cin>>n1>>n2)
{
if(n2==0)
cout<<endl;
else
cout<<str(n1,n2);
}
return 0;
}
string str(int n1,int n2)
{
return string(n1,c1)+string(n2,c2);
}
“滑稽”圖的txt文件:
26 8 0 0
19 6 10 6 0 0
11 9 22 6 0 0
12 2 3 5 17 4 3 2 0 0
10 2 7 3 17 3 6 2 0 0
8 2 40 2 0 0
6 17 13 17 0 0
5 7 12 1 10 7 12 1 0 0
5 15 5 1 9 15 5 1 0 0
4 2 2 3 10 4 13 3 10 5 0 0
3 2 50 2 0 0
3 1 52 1 0 0
3 1 52 1 0 0
2 2 52 2 0 0
2 2 52 2 0 0
2 2 52 2 0 0
2 2 52 2 0 0
3 1 5 1 40 1 5 1 0 0
3 2 5 1 38 1 5 2 0 0
4 1 6 2 34 2 6 1 0 0
5 1 7 3 28 3 7 1 0 0
6 1 8 4 22 4 8 1 0 0
7 2 10 5 12 5 10 2 0 0
9 2 12 14 12 2 0 0
11 3 32 3 0 0
14 3 26 3 0 0
17 5 16 5 0 0
22 16 0 0
院徽圖的txt文件:
29 4 0 0
26 9 0 0
24 13 0 0
21 18 0 0
19 22 0 0
17 26 0 0
14 31 0 0
12 13 16 6 0 0
10 11 23 5 0 0
9 10 9 10 8 5 0 0
9 9 5 19 7 4 0 0
10 8 3 6 10 8 7 3 0 0
12 7 2 3 2 8 6 7 7 2 0 0
2 1 11 7 2 4 3 6 5 8 7 1 0 0
3 2 11 19 5 10 0 0
5 3 14 10 7 12 0 0
7 4 26 15 0 0
10 5 20 17 0 0
12 10 7 21 0 0
14 34 0 0
16 30 0 0
18 26 0 0
20 22 0 0
22 18 0 0
24 14 0 0
26 10 0 0
28 6 0 0
(有空再寫個快播logo的數據……)
思考:能否做到打開一張圖片,自動生成ASCII ART。目前水平還達不成。