+ 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..
13 Réponses
+ 13
|\/| those who are trying,
| | this will print like this looping manner..
+ 11
I'm sorry brother.. using looping concept.. I want you to print my name in looping format..
+ 11
can you please explain the code..
+ 9
from india
+ 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..
+ 5
Here is a simple PHP and JS example.
<?php
$name = "Mona";
echo $name;
?>
<script>
var name = "Mona";
alert (name);
</script>
+ 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.
+ 5
@Monaliza I implemented the code in C
+ 4
#include <iostream>
#define EXIT_SUCCESS 0
using namespace std;
int main() {
cout << "Mona!" < endl;
return EXIT_SUCCESS;
}
+ 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.
+ 2
where are you from?
+ 1
see this one
https://code.sololearn.com/cDWXl7DEHn18/?ref=app
I hope this will help you