Practice C plus plus - northern-bites/nbites GitHub Wiki

C++ is a very powerful language with a lot of syntax and features. This assignment introduces you to some of the core functionality. You can ask any team member if you are having trouble or just want to learn more about C++. See this C resource if you want to learn more about some of C++'s features; since C++ was built on top of C, they share a lot of syntax.

##Your Assignment You will re-implement the same program as the Practice Python assignment. That is:

Write a program that asks the user to input information about one or more students and print it out. You will need a Student class, with at least name and year fields. Once the user has provided the necessary information, you can make a Student object and add it to a list that you will print out when the user is done.

This tutorial should help you along your way. Once you have a working program, compare it to your Python program and think about the differences!

See one answer. Of course, there are many ways to write this!