Guys, i want to you to print my name 'Mona' use any language except python, ruby. anybody interested take it as challenge. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 18

Guys, i want to you to print my name 'Mona' use any language except python, ruby. anybody interested take it as challenge.

try this..

19th Mar 2018, 10:48 AM
Monaliza
Monaliza - avatar
13 Answers
+ 13
|\/| those who are trying, | | this will print like this looping manner..
19th Mar 2018, 11:26 AM
Monaliza
Monaliza - avatar
+ 11
I'm sorry brother.. using looping concept.. I want you to print my name in looping format..
19th Mar 2018, 11:17 AM
Monaliza
Monaliza - avatar
+ 11
can you please explain the code..
19th Mar 2018, 11:22 AM
Monaliza
Monaliza - avatar
+ 9
from india
23rd Mar 2018, 10:26 AM
Monaliza
Monaliza - avatar
+ 8
some of you trying very hard to understand the concept.. it's pretty interesting one.. let me show you.. ********** * * * * ********** so that I declare, i want my name "Mona" should be printed like this.. got it guys.. anyways congrats for your efforts..keep rocking..
21st Mar 2018, 4:18 PM
Monaliza
Monaliza - avatar
+ 5
Here is a simple PHP and JS example. <?php $name = "Mona"; echo $name; ?> <script> var name = "Mona"; alert (name); </script>
19th Mar 2018, 11:13 AM
ihateonions
+ 5
We include the standard C++ library for input/output. I optionally define a preprocessor constant that acts as the value zero, for returning zero at the end of the program to signify it compiled and executed correctly. I initialize the main() function. I print out "Mona!" and end the line. I return EXIT_SUCCESS, which basically means return 0; since it holds the value zero. Program ends.
19th Mar 2018, 11:28 AM
Dread
Dread - avatar
+ 5
@Monaliza I implemented the code in C
24th Mar 2018, 3:08 AM
John James 1st
John James 1st - avatar
+ 4
#include <iostream> #define EXIT_SUCCESS 0 using namespace std; int main() { cout << "Mona!" < endl; return EXIT_SUCCESS; }
19th Mar 2018, 11:19 AM
Dread
Dread - avatar
+ 3
Here, take another one: this time I use a for loop/switch method. https://code.sololearn.com/cKSMc9oJAb4M/?ref=app By the way, I understood what you wanted the code to be like this whole time, I was just lazy at first.
21st Mar 2018, 7:47 PM
Dread
Dread - avatar
+ 2
where are you from?
23rd Mar 2018, 12:38 AM
蒋田中正
+ 1
see this one https://code.sololearn.com/cDWXl7DEHn18/?ref=app I hope this will help you
21st Mar 2018, 2:18 PM
Ujjwal Kumar
Ujjwal Kumar - avatar