From a6e041e5f9d81fadc307423b7d0afa82d2290484 Mon Sep 17 00:00:00 2001 From: Rachana C Nair Date: Tue, 24 Oct 2023 11:31:42 +0530 Subject: [PATCH] Updated --- HelloWorld/HelloWorld.cpp | 50 ++++----------------------------------- 1 file changed, 5 insertions(+), 45 deletions(-) diff --git a/HelloWorld/HelloWorld.cpp b/HelloWorld/HelloWorld.cpp index ffcd598..707e4f5 100644 --- a/HelloWorld/HelloWorld.cpp +++ b/HelloWorld/HelloWorld.cpp @@ -1,48 +1,8 @@ -#include -#include -#include +#include +#include -using namespace std; - -vector Census; - -void Census2017() { - /* - * Add yourself using the following format: - * Census.push_back("Your Name @ https://github.com/username"); - */ - - Census.push_back("Allen Comp Sci @ https://github.com/AllenCompSci"); - Census.push_back("Mr. Hudson @ https://github.com/theshrewedshrew"); - Census.push_back("BEST Team 58 @ https://github.com/BESTTeam58"); - Census.push_back("TexasSnow @ https://github.com/TexasSnow"); - Census.push_back("hotdogshabab @ https://github.com/hotdogshabab"); - Census.push_back("alansunglee @ https://github.com/alansunglee"); - Census.push_back("Rahultheman12 @ https://github.com/Rahultheman12"); - Census.push_back("spicyboi @ https://github.com/spicyboi"); - Census.push_back("John Nguyen @ https://github.com/jawnlovesfreestuff"); - Census.push_back("CodeTimesTen @ https://github.com/CodeTimesTen"); - Census.push_back("YourFriendlyNeighborhoodSpiderman @ https://github.com/YourFriendlyNeighborhoodSpiderman"); - Census.push_back("Devin Petersen @ https://github.com/DevinPetersen"); - Census.push_back("Cameron Mathis @ https://github.com/Phylux"); - Census.push_back("Samuel Woon @ https://github.com/samuel-w"); - Census.push_back("JustinV10 @ https://github.com/JustinV10"); - Census.push_back("Kyleaustin36 @ https://github.com/kyleaustin36"); - Census.push_back("Maaz Kamal @ https://github.com/Maze-Camel"); - Census.push_back("bingood4ever @ https://github.com/bingood4ever"); - Census.push_back("Gainz101 @ https://github.com/Gainz101"); - Census.push_back("zachdogg @ https://github.com/Zachdogg1"); - Census.push_back("PJHudson618 @ https://github.com/PJHudson618"); - Census.push_back("Abhi1458 @ https://github.com/Abhi1458"); - Census.push_back("Maxwell Cody @ https://github.com/MaxwellCody"); +int main() +{ + printf("Hello World!"); } -int main() { - Census2017(); - - for(int i = 0; i < (int) Census.size(); ++i) { - cout << "Hello World from " << Census[i] << endl; - } - - return 0; -}