You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
공백을 포함하는 문자열 str1과 공백을 포함하지 않는 문자열 str2를 입력 받아, str2가 str1에 몇 번 나타나는지, 그 횟수를 출력하는 프로그램을 작성하시오. 입력 받는 문자열의 크기는 최대 100 이다. (단, AAA에는 AA가 1개 있는 것으로 한다. 즉 이미 횟수 계산에 사용된 문자는 다음 계산에 포함하지 않는다.)
공백을 포함하는 문자열 str1과 공백을 포함하지 않는 문자열 str2를 입력 받아, str2가 str1에 몇 번 나타나는지, 그 횟수를 출력하는 프로그램을 작성하시오. 입력 받는 문자열의 크기는 최대 100 이다. (단, AAA에는 AA가 1개 있는 것으로 한다. 즉 이미 횟수 계산에 사용된 문자는 다음 계산에 포함하지 않는다.)
#include <stdio.h>
#include <string.h>
#pragma warning(disable:4996)
int main() {
char str1[101], str2[101];
int cnt = 0, len1, len2;
}
str1=rrr,str2=rr일 때
i=0일 때
j=0일 때 str1[0]=str2[0], j=1일 때 str1[1]=str2[1]이므로 cnt=1
i=i+2-1=1로 이동
i=1일 때
j=0일 때 str1[1]=str2[0], j=1일 때str[2]=str2[1]이므로 cnt=2
라서 2가 출력될 줄 알았는데 왜 1이 출력되는지 모르겠어요
The text was updated successfully, but these errors were encountered: