U E D R , A S I H C RSS

Map/노수민

~cpp 
#include <vector>
#include <map>
#include <iostream>
#include<fstream>
using namespace std;

struct student
{
	string name;
	int score;
};

int main()
{
	map<char, char> map1;
	
	map1['a'] ='D';
	map1['$'] ='t';
	map1['9'] ='p';
	map1['*'] ='k';
	map1['m'] ='n';
	map1['i'] ='I';
	map1['x'] ='W';
	
	map1['d'] ='o';
	map1['='] ='s';
	map1['z'] ='!';
	map1['-'] ='u';
	map1['@'] ='e';
	map1['y'] ='a';
	map1[' '] =' ';
	
	ifstream fin("input.txt");
	char ch;
	while(fin.get(ch))
	{
				cout << map1[ch];
	}
	cout << endl;
	return 0;
}

STL실습, 블스캠프2004/목요일
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:44
Processing time 0.0117 sec