// myecho.cpp
/////////////////////////////////////////////////////////////////////////
// Student Info
Copyright By PowCoder代写 加微信 powcoder
// ————
// Name :
// Student ID # :
// SFU Email :
// Statement of Originality
// ————————
// All the code and comments below are my own original work. For any non-
// original work, I have provided citations in the comments with enough detail
// so that someone can see the exact source and extent of the borrowed work.
// In addition, I have not shared this work with anyone else, and I have not
// seen solutions from other students, tutors, websites, books, etc.
// Notes to the Marker
// ——————-
// Tell us something about the assignment you’re submitting, for example:
// – are there are any known bugs?
// – are there any missing features?
// – were there any parts you found particularly challenging?
// – did you use any outside sources of help (fully cite them if you did)?
// – what editor and programming tools did you use?
/////////////////////////////////////////////////////////////////////////
#include
#include
#include
#include
#include
using namespace std;
int main(int argc, char *argv[]) {
cout << "Welcome to assignment 1! Here's what you typed:\n";
for (int i = 0; i < argc; i++) {
cout << argv[i] << " ";
cout << "\n";
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com