U E D R , A S I H C RSS

PP Project/20041001FM

PPProject ฒซ ฒˆงธ งŒ‚จ˜ ๊ฒฐ๊ณผฌผ


1. ฌธ œ

Ÿผ 2. Bฒˆ ฌธ œ
n๊ฐœ˜ ›†Œฅผ ๊ฐ€€Š” 1ฐจ› ฒก„ฐฅผ iงŒผ ™œผกœ šŒ „‹œผœผ.

1.1. Leonardong


~cpp 
#include <iostream>
#include <string>
using namespace std;

void roll( string str, int i );

void main()
{
	string str = "abcde";
	int i = 3;
	roll(str, i);
}

void roll( string str, int i )
{
	cout << str << endl;
	
	int n = str.length();
	char temp;
	
	for ( int tag = 0 ; tag < n ; tag++ ){
		temp = str[tag];
		str[tag] = str[i-1];
		str[i-1] = temp;
		i = i < n ? i+1 : i;
	}
	cout << str << endl;
}

1.2. žฌ„  šŒ˜


~cpp 
#include<iostream.h>
#include<cstring>

void roll(int i);

char * string="ABCDEFGHIJKLMNOPQRSTUV";
const int SIZE = strlen(string);


void main()
{	
	roll(4);
}

void roll(int i)
{
	char* buffer1 = new char[i];
	strncpy(buffer1, string, i);
	buffer1[i] = 0;
	char *buffer2 = new char[SIZE-i];
	strcpy(buffer2,string+i);
	cout<<strcat(buffer2,buffer1)<<endl;	
}

 

2. ›„๊ธฐ

žฌ„  :
ฒซ ž„ผ Šค„ฐ”” ฐฉ‹„  ••˜Š”ฐ ‹œ๊ฐ„ ˜คž˜ ๊ฑธ ธ‹ค. šŒ˜™€ PairProgramming „ •˜Š”ฐ „ˆ —ฌœ ๊ฐ€ —†—ˆ‹ค.
Leonardong:
•Œ๊ณ ฆฌฆ˜„ •Œ•„„ ฝ”“œกœ ฐ”กœ ’€–“ฐ๊ธฐ๊ฐ€ •ˆ œ‹ค. ๊ทธŸ •ŒŠ” ๊ฐ€งœ ฝ”“œ(psuedo code)ฅผ  –Š” ๊ฒƒ „›€ œ‹ค.


Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:59
Processing time 0.0084 sec