[编程入门]自由下落的距离计算,简单易懂(Java) 摘要:解题思路:小球该次弹起的高度+弹起前下落的高度=该次弹起高度的3倍。注意事项:无参考代码:import java.util.Scanner;public class Main { public …… 题解列表 2024年12月03日 1 点赞 0 评论 330 浏览 评分:10.0
编写题解 1951: 求平方和 摘要:解题思路:求两个数的平方和 定义两个变量a,b,再定义一个变量s存放所求的值; 用 scanf 输入变量; …… 题解列表 2024年12月03日 0 点赞 0 评论 473 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2024年12月03日 0 点赞 0 评论 538 浏览 评分:0.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ char ming; scanf("%c",&ming); int port; port…… 题解列表 2024年12月03日 0 点赞 0 评论 305 浏览 评分:0.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float a; scanf ("%f",&a); if (a>=0) { …… 题解列表 2024年12月03日 0 点赞 0 评论 539 浏览 评分:10.0
七行代码解决问题 摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))for i in range(len(a)): print(a[i],end=" ")print()fo…… 题解列表 2024年12月03日 0 点赞 0 评论 1072 浏览 评分:3.5
简单,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum; scanf ("%d %d",&x,&y); sum=x+y; …… 题解列表 2024年12月03日 3 点赞 0 评论 831 浏览 评分:0.0
布尔类型变量 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <stdbool.h>int main (){ bool b; char c; printf ("%…… 题解列表 2024年12月03日 0 点赞 0 评论 442 浏览 评分:0.0
C语言训练-水仙花数 摘要:解题思路:将所有三位数遍历,分别判断是否为水仙花数,是则输出。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int m; …… 题解列表 2024年12月03日 0 点赞 0 评论 332 浏览 评分:0.0
2925 ******自己复习用********** 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdbool.h>int main() { int n = 0; …… 题解列表 2024年12月03日 0 点赞 0 评论 228 浏览 评分:9.9