Animated ASCII Art Java Code #5

preview_player
Показать описание

In this video, I show you how to use ASCII art in java code to make an animated Roflcopter!

I like to take a break from learning and just program something that I enjoy. As a kid I've always loved ascii art. In eighth grade I chose to do a picture of the United States in ascii art and I had my own stash of ascii art creations I made in Microsoft word on my laptop.

I hope you enjoyed this ascii art tutorial on creating your own animated ascii art java code! I really enjoy making videos like this so I'll probably do a lot more project tutorials like this one :)

What did you add to your roflcopter? Did you face any challenges when making this ascii art?

Disclosure: The Springboard link provided is linked to my affiliate account & supports the channel.

~

Alex Lee
Рекомендации по теме
Комментарии
Автор

Hey Alex, I'm 12 and I love your tutorials so much! They're so entertaining and I'm learning alot, Thanks for making them!

thevictor
Автор

This is very fun! Alex, you always make the Programming looks fun and entertaining. I never get bored! Thanks for making us learn the concepts so easily. Appreciate it.

tejdeepak
Автор

I know this is one of your more goofy tutorials but you really are a god send, im finally understanding a lot of the concepts of java thanks to you

tybug
Автор

Cool this is awesome. Will create another animated with ASCII and will share it here.. So inspiring!!!

tabztabzliejudacleson
Автор

Good Video Series & nice background music. Excellent quality training videos! :)

chandureddy
Автор

this is something practical i learned today

mohittyagi
Автор

You are teaching it so happily i love this tysm

phytoplancton
Автор

Hi Alex Lee, thank you so much for this tutorial am really enjoying it. and you're talented your lessons are easy and fast to master. I am recently following up with the tutorial, i started with the basic java 1.

khadijaabdihassan
Автор

Thanks! You saved me during my School Project!

thelabminer
Автор

It is profoundly useful information Thanks:)

jaewanjang
Автор

Thank you sooo much for the tutorials Alex! I made a dancing cat lol

gabrielamurillo
Автор

hey bro, im 11 and these tutorials are actually so good! ive been trying to learn java for about a year now, and these are the best tutorials for it that i have found! the tutorials are very informative, but also very entertaining at the same time!

notron_gaming
Автор


6 january 2022 great day an lesson, Thanks Alex

yeliza
Автор

Awesome! programming is fun like this! having small things to show progress! i made a cube with eyes walks into another cube and dies lol

Maltebyte
Автор

exactly what I am looking for, hahaha this may win me 40$ if I created a unique Christmas animation entry haha!!!
thumbs up!!!!

devdadph
Автор

Haha, this was awesome! I made a cat! ^^ Thank you for the lesson!

hiutale
Автор

I don't understand how it updates the top one tho. Is it the space between the prints that tells it to go to the top and over print? Why doesn't it print downwards forever?

Turrican
Автор

i tried this on inteliJ but it looks like its scrolling down and doesn't even look like animation. is there a way to stop it?

deepanshukirola
Автор

Doesn't work on IntelliJ... When something is printing down it does a flickery motion that ruins the animation... :(

OneBorko
Автор

Pls for the love of god use this instead of a bunch of print lines:

for (int num = 0; num < x; num++)) {
System.out.print('\n');
}

Or this (don't know if it works in java):

System.out.print('\n\n\n');

Change the X to how many lines you would like to have in between for the first one or use as many \n (new lines) as you need. It's better to do it this way to build good habits

Mythikal