+ 2
CHALLENGE 2:"HELLO WORLD! "
You should write on your own pr language "HELLO WORLD from......! " (your city or country).
8 Respostas
+ 15
<p>Hello, World! from India.🇮🇳
puts "Hello, World! from India. 🇮🇳"
console.log("Hello, World! from India.🇮🇳")
+ 4
Boi it is today's daily challenge
+ 4
print("Hello from Singapore!")
+ 2
cout <<"HELLO WORLD FROM ALMATY, KAZAKHSTAN! ";
+ 2
what do you mean "our own programming language" ??
it's globally english , no specific country with specific language..
+ 2
I mean in which language you work. for example c++or java, python...
+ 1
I work with Java, Python, C++ and COBOL so far so I'll answer for those 4, including all required set up code.
Java:
public class Hello {
public static void main(String[] args) {
System.out.print("Hello world from America!");
}
}
C++:
#include <iostream>
using namespace std;
int main() {
cout << "Hello world from America!" << endl;
}
Python:
2.x - print "Hello world from America!"
3.x - print("Hello world from America!")
COBOL:
Identification Division.
program-ID. Hello.
Data Division.
working-storage section.
01 HELLO_WORLD Pic x(25) Value "Hello world from America!".
Procedure Division.
100-MAIN-MODULE.
Display HELLO_WORLD
goback.
If you want to learn more about COBOL I can explain the very basics on how the setup works. If you've worked with COBOL I have a discussion open that you can find on my account page that I want SoloLearn to notice to possibly get COBOL on SL's roster.
0
System.out.println("hello world" + " سڵاو جیهان");