Algorithm/Code Force 썸네일형 리스트형 CodeCraft-19 and Codeforces Round #537 (Div. 2) A - Superhero Transformation 단순 구현 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758#include using namespace std; char s[1001];char t[1001]; int main(void){ int i = 0, j = 0; char temp = 'a'; while (temp != '\n') { scanf("%c", &temp); s[i++] = temp; } temp = 'a'; while (temp != '\n') { scanf("%c", &temp); t[j++] = temp; } if (i != j) { pr.. 더보기 이전 1 다음