04 2020 档案
摘要:#include <stdio.h> #include <math.h> #define N 4 int GetMax( int a[]); int GetMin( int a[]); int check(int n); int idigit(int n,int a[]); void is_kabu
阅读全文
摘要:/* * 任务描述:给定一个长字符串和一个短字符串,找出短串在长串中出现的次数, * 并输出每次长串中出现短串的起始位置。(可用字符串相关函数简化编程工作) */ #include<stdio.h> #include <string.h> #define MAX 500 int main() { c
阅读全文
摘要:#include <stdio.h> int main() { int oneYuan,towYuan, fiveYuan,count=0; int sum_money; scanf("%d",&sum_money); int mostOne = sum_money - 7,mostTow = (s
阅读全文