diff --git a/CPP/helloworld_new.cpp b/CPP/helloworld_new.cpp new file mode 100644 index 0000000..da1f22b --- /dev/null +++ b/CPP/helloworld_new.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ + cout<<"Hello World"; + return 0; +} diff --git a/Java/HelloWorld_new.java b/Java/HelloWorld_new.java new file mode 100644 index 0000000..afa7454 --- /dev/null +++ b/Java/HelloWorld_new.java @@ -0,0 +1,6 @@ +public class HelloWorld { //hello sbis04 + public static void main(String[] args) { + System.out.println("Hello World"); + } +} +