diff --git a/README.md b/README.md deleted file mode 100644 index c98820d..0000000 --- a/README.md +++ /dev/null @@ -1,22 +0,0 @@ -![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 diff --git a/Submission/200121030.md b/Submission/200121030.md new file mode 100644 index 0000000..5877474 --- /dev/null +++ b/Submission/200121030.md @@ -0,0 +1,49 @@ +# Mihir Kumar Singh +## 200121030 +---------------------------------- +## Table +| Event name | Event Date | Gone Through The Resources 😁| +|-----------------|---------------|-------------------------------| +| OPEN SOURCE | 10/5/21 | Yes | +| COMPETITIVE CODING| 11/5/21 | Yes +| DESIGN | 12/5/21 | No +| GAME DEVELOPMENT | 13/5/21 | Yes +| WEB DEVELOPMENT | 14/5/21 | Yes +| MACHINE LEARNING | 15/5/21 | No +| APP DEVELOPMENT | 16/5/21 | No + +--------------------------------------------- + +## Code +```C++ +#include +#include +using namespace std; +int main() +{ + string name="Mihir Kumar Singh"; + int ascii=0; + //getline(cin,name); + for (int i = 0; i < name.size(); i++) + { + if(name[i]!=' ') + { + ascii+=(int )name[i]; + } + } + cout<<"ASCII Sum of your name is"<