#include <stdio.h>
#include<conio.h>
#include <stdlib.h>
#include<graphics.h>
#define WIDTH 800
#define HEIGHT 480
#define SIZE 20
int main() {const char* str = "人生就是由欲望不满足而痛苦和满足之后无趣这两者所构成";const char* str1 = "每个人都没有绝对的道德底线,只是诱惑不够";IMAGE img,da;loadimage(&img, "gui.png"); loadimage(&da, "da.gif");initgraph(WIDTH, 480);int i = 0;while (1) {setbkcolor(i++ * 10 % 0xffffff);clearcliprgn();putimage(70, 70, &img);putimage(170, 170, &img);//putimage(170, 0, &da);for (int i = 0; i <= WIDTH / SIZE; i++) {for (int j = 0; j <= HEIGHT / SIZE; j++) { rectangle(i * SIZE, j * SIZE, SIZE, SIZE);}} settextstyle(24, 0, "宋体"); // 设置字体大小和样式settextcolor(YELLOW);outtextxy(20, 20, str); // 在指定位置输出汉字settextstyle(24, 0, "黑体"); // 设置字体大小和样式settextcolor(RED);outtextxy(20, 80, str1); // 在指定位置输出汉字rectangle(18, 18, 20 + strlen(str) * 12, 44); // 绘制长方形getch();clearcliprgn();}return 0;
}