-
Posts
60 -
Registo
-
Última visita
alexandregil007
Administrador
tu-bota.mp3
00:00/00:00
- tu-bota.mp3
-
Citar
WHAT YOU SEE :
" Hello world! "
CitarWHAT I SEE :
C++ :#include <iostream> int main() { std::cout << "Hello World!"; return 0; }
C :
#include <stdio.h> int main() { printf("Hello, World!"); return 0; }
Java :
class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }
Python :
print ("Hello World!")
Pascal :
writeln ('Hello World!');
Html :
<!DOCTYPE html> <html> <head> <title>Hello World!<> </head> <body> <>This is fun!<> </body></html>
Fim.