diff --git a/README.md b/README.md index c98820d..d360f35 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,60 @@ -![alt text](https://github.com/codingiitg/open_source_submission/blob/main/Group%2095.png) -# open_source_submission -![alt text](https://github.com/codingiitg/open_source_submission/blob/main/coding-club%20logo.png) - - -## PROBLEM STATEMENT -### You need to create a .md file with the following instructions given below and push it to the opensoc_task github repository of Coding Club IITG -**** -## INSTRUCTIONS - -1. First line should consist of your name followed by roll no. with decreasing heading level. -2. Create a table with 3 columns and 8 rows which will consist of the schedule of coding week. - - Heading of the column will be Event name,Event date,Gone through the resources. -- Fill the first and the second row according to the given schedule -- For the third column fill in YES & NO ONLY. -3. Write a C++ Code in a fenced code block. -- You have to code a program which gives SUM of ASCII values of your FULL NAME. -Attach the image of the LOGO of the Coding Club.(img will be provided) -4. Write a Short description on your interest in different fields of coding and list some noticeable achievements if any.(list should be an ordered one) - **** -## Submission -### Commit your .md file with file name as your Roll no. in Submission folder + # ARSH VERMA +___ +--- + +## Roll Number : - 200123010 +___ +--- +**SCHEDULE OF CODING WEEK:-** +| Event Name | Event Date |Gone through the resources| +| --- |--- |---| +| Orientation | 09/05/2021|Yes| +| Open Source | 10/05/2021|Yes| +| Competitive Coding | 11/05/2021|Yes| +| Design | 12/05/2021|Yes| +| Game Development | 13/05/2021|No | +| Web Development | 14/05/2021|Yes| +|Machine Learning | 15/05/2021|No | +|App Development | 16/05/2021|Yes| +--- +--- +### C++ Code to Output sum of ACSII value of your FullName :- +```c + #include +#include + using namespace std; + + +int main() +{ + string name; + cout<<"Enter your full name :- "; + getline(cin,name); + int sum_ascii = 0; + + for(int i =0;i +#include + using namespace std; + + +int main() +{ + string name; + cout<<"Enter your full name :- "; + getline(cin,name); + int sum_ascii = 0; + + for(int i =0;i