0
私はC++を初めて使っていますが、コーディングの基礎知識はあります。このプログラムはうまく動作しますが、これを行うにはより良い方法があるのだろうかと思います。は良い方法ですか? new to C++
このプログラムでは、あなたの姓の最初の3文字とあなたのファーストネームの最初の2文字を使ってスターウォーズの名前を作ることでスターウォーズの名前をつけます。そして、あなたの星のための戦争は、それはあなたの母親の旧姓の最初の2つの文字と、あなたがに生まれた都市の最初の3つの文字を取り姓。
// starWarsName.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main()
{
string firstName;
string surname;
string maidenName;
string city;
cout << "This program is designed to make you a star wars name, it takes some information and concatinates parts of the information to make your NEW name" <<endl << endl;
cout << "please enter your first name" << endl;
cin >> firstName;
cout << "please enter your surname" <<endl;
cin >> surname;
cout << "what is your mothers maiden name?" << endl;
cin >> maidenName;
cout << "please tel me which city you were born in" << endl;
cin >> city;
cout << firstName << " " << surname << endl;
cout << firstName[0] << " " << surname << endl;
int size = firstName.length();
//cout << size;
cout << surname[0] << surname[1] << surname[2] << firstName[0] << firstName[1];
cout << " " << maidenName[0] << maidenName[1] << city[0] << city[1] << city[2];
cin.get();
cin.ignore();
return 0;
}
はhttp://codereview.stackexchange.com/に投稿します。 –
フィードバックをいただきありがとうございます、何をすべきかを知るのに十分なスタック交換は使用されていません。 – deadstone1991
さて、あなたは今... –