Skip to content

Instantly share code, notes, and snippets.

@noahschepers
noahschepers / numSwap.cpp
Created September 20, 2018 04:00
A Simple Number Swapper
/******************************************************************************
Programmed by
Noah Schepers
---
Sept. 19, 2018
*******************************************************************************/
#include <iostream>
@noahschepers
noahschepers / main.cpp
Created October 12, 2017 05:42
Designing a C++ program of multi list to host student-class data
#include<iostream>
#include<fstream>
#include<iomanip>
using namespace std;
class student
{
int rollno;
char name[50];
int p_marks, c_marks, m_marks, e_marks, cs_marks;