1130好心疼C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h> int main(){ char str[…… 题解列表 2021年11月10日 0 点赞 0 评论 493 浏览 评分:0.0
1124不要看不起我,我很厉害的 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main (){ char str[100];gets(str);int i=0; whi…… 题解列表 2021年11月10日 0 点赞 0 评论 445 浏览 评分:0.0
1038不可一世的C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>#define S (a+b+c)/2#define area sqrt(S*(S-a)*(S-b)*…… 题解列表 2021年11月10日 0 点赞 0 评论 567 浏览 评分:0.0
1039 我不太喜欢按照规矩来 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>#define LEAP_YEAR(y) y%4==0&&y%100!=0||y%400==0int …… 题解列表 2021年11月10日 0 点赞 0 评论 271 浏览 评分:0.0
1036 define帮你自己造定义 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define change(a,b) t=a,a=b,b=t;int main(){ int a,b,t; scanf(…… 题解列表 2021年11月10日 0 点赞 0 评论 530 浏览 评分:0.0
1125题就是漏洞百出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ printf("A,B,C,F,"); return 0;}…… 题解列表 2021年11月10日 0 点赞 0 评论 363 浏览 评分:0.0
[编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double Sn=0,an=0,n,i,t,a=2.0,b=1.0;//a为分子,b为分母,an为单项和…… 题解列表 2021年11月10日 0 点赞 0 评论 325 浏览 评分:0.0
[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#define M 10int main(){ int a[M],…… 题解列表 2021年11月10日 0 点赞 0 评论 278 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun1(int m,int n); //这要声明两个函数。也可以像下面那样写int fun2(int m,int n);…… 题解列表 2021年11月10日 0 点赞 0 评论 494 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int exchange(char a[],char b[]){ int i,l,j = 0…… 题解列表 2021年11月10日 0 点赞 0 评论 310 浏览 评分:0.0