内码对称12222222222222222 摘要:解题思路:先将整数变为32位的01 然后判断回文注意事项:参考代码:#include "stdio.h"#include "string.h"int main() { long long int n…… 题解列表 2021年08月29日 0 点赞 0 评论 332 浏览 评分:0.0
直线交点问题【小学生都会】 摘要:```c #include int main() { double a,b,c,d,x,y; scanf("%lf%lf%lf%lf",&a,&b,&c,&d); x=(d-b)/(…… 题解列表 2021年08月29日 0 点赞 2 评论 328 浏览 评分:9.9
核桃的数量—(20行代码)清晰易懂 摘要:解题思路:用了数学基本知识—最小公倍数和枚举的思想,思路十分简单。注意事项:用到了自定义函数求出a、b、c中最大的值,在进行枚举。参考代码:#include<stdio.h> …… 题解列表 2021年08月29日 0 点赞 0 评论 448 浏览 评分:9.9
宏定义的闰年判断 摘要:解题思路:注意事项:宏定义直接三目运算符来计算参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include#de…… 题解列表 2021年08月29日 0 点赞 0 评论 561 浏览 评分:0.0
宏定义的三角形求法--海伦公式 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>#includ…… 题解列表 2021年08月29日 0 点赞 0 评论 568 浏览 评分:2.0
运用printf的输出机制 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>#includ…… 题解列表 2021年08月29日 0 点赞 0 评论 368 浏览 评分:0.0
do while循环的迭代法 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>#includ…… 题解列表 2021年08月29日 0 点赞 0 评论 356 浏览 评分:0.0
数据类型的范围问题 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>long lo…… 题解列表 2021年08月29日 0 点赞 0 评论 324 浏览 评分:0.0
Little Ke's problem Python解决 摘要:解题思路: 简单的变量存储值并输出参考代码:input_a = input()print("What is your name? Hello "+input_a+", nice to meet …… 题解列表 2021年08月28日 0 点赞 0 评论 480 浏览 评分:9.9
排序----插入排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#define…… 题解列表 2021年08月28日 0 点赞 0 评论 522 浏览 评分:0.0