Skip to content
Snippets Groups Projects

Update Exercise 1 - Farm.txt

Closed Omkar Akolkar requested to merge oa07987/vhb-cpp-en:oa07987-main-patch-39737 into main
1 file
+ 11
1
Compare changes
  • Side-by-side
  • Inline
@@ -10,4 +10,14 @@ Farmer Max has a farm with ducks and pigs. He wants to sell them.
Write a C++ program that welcomes the user to the farm.
Regards,
Rudi Buss
\ No newline at end of file
Rudi Buss
#include <iostream>
using namespace std;
int main()
{
cout <<"Welcome," << endl << "I am Max. And I want to sell ducks and pigs from my farm.";
return 0;
}
\ No newline at end of file
Loading