C++ hello world

This commit is contained in:
Stephan Richter
2018-02-09 15:27:17 +01:00
parent cfd9749ed1
commit 5eb99075fb
2 changed files with 9 additions and 8 deletions
-8
View File
@@ -1,8 +0,0 @@
#include<stdio.h>
#include "funktionen.h"
int main() {
int a = 6;
printf("Fakultaet von %d ist %d\n", a, fakultaet(a));
return 0;
}
+9
View File
@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(){
cout << "Hello World";
return 0;
}