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 评论 518 浏览 评分:0.0
1041没人能比我更简单,目前看来,求点个赞? 摘要:解题思路:注意事项:参考代码:#include#define s max int main (){ float max,a,b,c;scanf("%f %f %f",&a,&b,&c); max=…… 题解列表 2021年11月10日 0 点赞 0 评论 424 浏览 评分:9.9
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 评论 265 浏览 评分: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 评论 552 浏览 评分: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 评论 427 浏览 评分:0.0
1130好心疼C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h> int main(){ char str[…… 题解列表 2021年11月10日 0 点赞 0 评论 482 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字(python) 摘要:解题思路:注意事项:参考代码:N = int(input())flag = Falsefor i in range(10000,1000000): if i == int(str(i)[::-1…… 题解列表 2021年11月10日 0 点赞 0 评论 388 浏览 评分:0.0
[编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ double a,b,c,sum1=0,sum2=0,sum3=0,i,sum=0; scanf("…… 题解列表 2021年11月10日 0 点赞 0 评论 259 浏览 评分:0.0
C++ C用库函数(比赛时可以查看API文档) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string std; getline(cin,std); …… 题解列表 2021年11月10日 0 点赞 0 评论 1060 浏览 评分:9.9
字符串逆序(2行代码) 摘要:解题思路:没什么思路,当成数组,逆序输出即可。注意事项:参考代码:a = input()print(a[::-1])…… 题解列表 2021年11月10日 0 点赞 0 评论 458 浏览 评分:0.0