Comments: 29
Lucain24 [2017-12-20 20:39:17 +0000 UTC]
Yeah, you got me.
👍: 0 ⏩: 0
Codepuppy [2017-11-08 00:28:01 +0000 UTC]
Adorabibbles :'>
👍: 0 ⏩: 0
Lukyheart45 [2016-12-30 01:58:39 +0000 UTC]
Aww! this is adorable! and Its well drawn! good job!
👍: 0 ⏩: 1
Elidyss [2016-12-25 18:51:11 +0000 UTC]
Amazing 'o'
👍: 0 ⏩: 1
Poooding In reply to Elidyss [2016-12-27 10:23:52 +0000 UTC]
Thank you!!
👍: 0 ⏩: 1
Elidyss In reply to Poooding [2016-12-27 13:13:04 +0000 UTC]
You're welcome! 'w'
👍: 0 ⏩: 0
AzAFoX [2016-10-07 09:31:51 +0000 UTC]
wooooow looks amazing pudin
👍: 0 ⏩: 0
Pheunoo [2016-09-20 17:21:10 +0000 UTC]
Holy cow this is beautiful. I had no idea it was tradtional till i took a closer look. It's painted very well.
👍: 0 ⏩: 1
Poooding In reply to Pheunoo [2016-09-22 21:04:10 +0000 UTC]
Thank you very much!!
👍: 0 ⏩: 0
NoCreativo [2016-09-13 23:09:05 +0000 UTC]
Such a pretty painting of Momiji
👍: 0 ⏩: 1
xXKenTheWolfXx [2016-09-13 03:20:32 +0000 UTC]
Looks very cute!But i wonder what program u use to draw?
👍: 0 ⏩: 1
Poooding In reply to xXKenTheWolfXx [2016-09-13 08:12:15 +0000 UTC]
Normally I use SAI.
This is gouache on canvas.
👍: 0 ⏩: 1
xXKenTheWolfXx In reply to Poooding [2016-09-13 16:52:50 +0000 UTC]
Oh ^^,u have a very amazing skill on Sai!
👍: 0 ⏩: 1
A3Kitsune [2016-09-12 21:30:07 +0000 UTC]
👍: 0 ⏩: 1
Chichok [2016-09-12 21:11:38 +0000 UTC]
gg
👍: 0 ⏩: 1
Poooding In reply to Chichok [2016-09-12 21:28:54 +0000 UTC]
gg is gg backwards.
👍: 0 ⏩: 1
Chichok In reply to Poooding [2016-09-12 22:01:41 +0000 UTC]
public static void main(String[] args)
{
//Resources
Scanner user_input = new Scanner( System.in );
String palindromeCheck;
String mirror = "";
//Taking in input
System.out.println("Enter string to check if it's a palindrome:");
palindromeCheck = user_input.nextLine( );
user_input.close();
//Mirror image
for( int i = palindromeCheck.length() - 1; i > -1; i-- )
{
mirror = mirror + palindromeCheck.charAt(i);
}
//Confirmation
if( palindromeCheck.equals(mirror) )
{
System.out.println("String is a palindrome");
}
else
{
System.out.println("String is NOT a palindrome");
}
}
Sample run:
Enter string to check if it's a palindrome:
gg
String is a palindrome
👍: 0 ⏩: 1
Sarryck [2016-09-12 20:46:44 +0000 UTC]
Very cute and beautiful. I love the colors and the scene <3
👍: 0 ⏩: 1
Poooding In reply to Sarryck [2016-09-12 21:05:32 +0000 UTC]
Thank you! :3
👍: 0 ⏩: 0