ehh_bry

ehh_bry's profile picture

Last active:

Mood: troste

View my: Blog | Forum Topics

SpaceHey URL:

https://spacehey.com/ehh_bry

ehh_bry's Interests

General

Se dar pataditas 

Music

Trueno y los changos del ártico (-.-)y

Movies

Tu abuela en tanga :)

Television

No tengo ;-;

Books

Mi chota (  ̄▽ ̄)

Heroes

Mis gatos 

ehh_bry's Links

ehh_bry's Latest Blog Entries [View Blog]

There are no Blog Entries yet.

ehh_bry's Blurbs

About me:

Soy un mapache \(^^)/

Who I'd like to meet:

A vos vv... xd

ehh_bry's Friends Comments

Displaying 1 of 1 comments ( View all | Add Comment )

V

V's profile picture

Un corazón mi amor

#include
#include

int main() {
for (int y = 0; y <= 14; y++) {
for (int x = 0; x <= 14; x++) {
float d1 = sqrt(pow(x - 7, 2) + pow(y - 7, 2));
float d2 = sqrt(pow(x - 11, 2) + pow(y - 7, 2));
if ((d1 < 4 && x < 7) || (d2 < 4 && x > 7))
std::cout << "* ";
else
std::cout << " ";
}
std::cout << std::endl;
}
return 0;
}

Report Comment