程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C語言;在終端輸入多行信息,找出包含“ould”的行,並打印改行。

C語言;在終端輸入多行信息,找出包含“ould”的行,並打印改行。

編輯:關於C語言

C語言;在終端輸入多行信息,找出包含“ould”的行,並打印改行。


#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
#define MAX 1000
int getline(char *line, int limit)
{
 int ch = 0;
 int i = 0;
 while (limit-- && ((ch = getchar()) != EOF) && (ch != '\n'))
 {
  line[i++] = ch;
 }
 if (ch == '\n')
 {
  line[i++] = '\n';
 }
 line[i] = '\0';
 return i;
}
char *my_strstr(char *arr1,char *arr2)
{
 assert(arr1);
 assert(arr2);
 char *p = arr1;
 char *s1 = p;
 char *s2 = arr2;
 while (*s1 != '\0')
 {
  s1 = p;
  s2 = arr2;
  while ((*s1 != '\0') && (*s2 != '\0') && (*s1 == *s2))
  {
   s1 ++;
   s2 ++;
  }
  if (*s2 == '\0')
  {
   return p;
  }
  p++;
 }
 return NULL;
}
  
int main()
{
 char *p = "ould";
 char line[MAX] = {0};
 while (getline(line, MAX - 1))
 {
  if (my_strstr(line, p))
  {
   printf("%s\n", line);
  }
 }
 system("pause");
 return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved