Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arsh added the file #96

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 60 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 <iostream>
#include <string>
using namespace std;


int main()
{
string name;
cout<<"Enter your full name :- ";
getline(cin,name);
int sum_ascii = 0;

for(int i =0;i<name.length();i++)
{
if(name[i]!=' ')
{
sum_ascii +=(int)name[i];
}
}
cout<<"SUM of ASCII values of your FULL NAME is "<<sum_ascii<<"\n";


return 0;
}

```
---
---
#### **Coding Club Logo**

![IITG coding-clublogo](https://raw.githubusercontent.com/codingiitg/open_source_submission/main/coding-club%20logo.png)

---
---
### **My Interests!**
---
hi everyone. I have interest in programming .i have taken part in this event to gain something and for fun also with some interesting things.i also explore the languages c and c++.

65 changes: 65 additions & 0 deletions Submission/200123010.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# 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 <iostream>
#include <string>
using namespace std;


int main()
{
string name;
cout<<"Enter your full name :- ";
getline(cin,name);
int sum_ascii = 0;

for(int i =0;i<name.length();i++)
{
if(name[i]!=' ')
{
sum_ascii +=(int)name[i];
}
}
cout<<"SUM of ASCII values of your FULL NAME is "<<sum_ascii<<"\n";


return 0;
}

```
---
---
#### **Coding Club Logo**

![LCO Mascot](https://raw.githubusercontent.com/codingiitg/open_source_submission/main/coding-club%20logo.png)

---
---
### **My Interests!**
---
hi everyone. I have interest in programming .i have taken part in this event to gain something and for fun also with some interesting things.