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 评论 500 浏览 评分: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 评论 388 浏览 评分:0.0
1130好心疼C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h> int main(){ char str[…… 题解列表 2021年11月10日 0 点赞 0 评论 445 浏览 评分: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 评论 355 浏览 评分: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 评论 235 浏览 评分:0.0
C++ C用库函数(比赛时可以查看API文档) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string std; getline(cin,std); …… 题解列表 2021年11月10日 0 点赞 0 评论 1029 浏览 评分:9.9
字符串逆序(2行代码) 摘要:解题思路:没什么思路,当成数组,逆序输出即可。注意事项:参考代码:a = input()print(a[::-1])…… 题解列表 2021年11月10日 0 点赞 0 评论 432 浏览 评分:0.0
[编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,Sn = 0,i,a = 0; scanf("%d",&n); for(i=0; …… 题解列表 2021年11月10日 0 点赞 0 评论 321 浏览 评分:0.0
编程入门]字符串分类统计 摘要:解题思路:#include <stdio.h>#include <ctype.h>int main(){ int letter = 0,number = 0,blank = 0,others =…… 题解列表 2021年11月10日 0 点赞 0 评论 565 浏览 评分:0.0
1008成绩评定 摘要:解题思路:#include <stdio.h> //头文件void main() //一个文件的开头{ int a;//赋予与一个值 scanf("%d",&a); if(a<=100) if(a…… 题解列表 2021年11月10日 0 点赞 4 评论 971 浏览 评分:9.9