题解列表
1033题: 自定义函数之字符提取
摘要:# 自己写的代码
```c
#include
#include
void fun(a[]){
char b[20];
}
int main()
{
ch……
1034题: 自定义函数之数字分离
摘要:# 自己写的代码
```c
#include
int main(){
char a[5];
gets(a);
for(int i=0;i……
1035题: 自定义函数之字符类型统计
摘要:# 自己写的代码(稍有瑕疵,输出不在主函数中)
```c
#include
#include
int tongji(char a[]){
int z=0,s=0,k=0,q=0,……
[STL训练]周瑜的反间计
摘要:解题思路:利用寻找数组注意事项:用find,防止没有找到数字一直输出no参考代码:#include <stdio.h>int main() { int j,find,a,n,arr[1000]; lo……
1036题: 带参数宏定义练习
摘要:# 代码难点
对于宏定义,自己有点印象,但是不会运用,直接参考了答案,希望之后的代码可以照猫画虎
# 参考代码
```c
#include
#include
#define chang……
1037题: [宏定义的练习
摘要:# 自己写代码
```c
#include
#include
#define qiuyu(a,b) t=a/b;
int main()
{
int a,b,t;
scanf("……