C 언어 - 터미널에서 여러 줄 정보를 입력하여 "ould"가 포함된 줄을 찾아 줄을 인쇄합니다.
터미널에 여러 줄 정보를 입력하고 'ould' 를 포함하는 줄을 찾아서 줄을 인쇄합니다.
예:
Au,love could you and I with fate conspire
To grasp this sorry scheme of things entire,
Would not we shatter it to bitd �C and then.
터미널에서 상술한 문자, 출력
Au,love could you and I with fate conspire
Au,love could you and I with fate conspire
To grasp this sorry scheme of things entire,
Would not we shatter it to bitd �C and then.
Would not we shatter it to bitd �C and then.
#include<stdio.h>
#include<string.h>
#define MAX 1000
int getline(char line[])
{
int limit = MAX - 1;
int ch = 0;
int i = 0;
while ((ch = getchar()) && (--limit) && ch != '
' && ch != EOF)
{
line[i] = ch;
i++;
}
if (ch == '
')
{
line[i++] = '
';
}
line[i] = '\0';
return i;
}
char find(char *a,char *b,int m,int n)
{
int i,j, k;
i = k = 0;
j = 0;
while (i<m && j<n)
{
if (a[i] == b[j])
{
i++;
j++;
}
else
{
j = 0; k++;
i = k;
}
}
if (j >= n)
{
return &a ;
}
else
{
return 0;
}
}
int main(void)
{
char line[MAX];
char *p = "ould";
int m,n;
m = strlen(line);
n = strlen(p);
while (getline(line))
{
if (find(line, p,m,n))
{
printf("%s", line);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.