不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2024年12月03日 0 点赞 0 评论 937 浏览 评分:0.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ char ming; scanf("%c",&ming); int port; port…… 题解列表 2024年12月03日 0 点赞 0 评论 709 浏览 评分:0.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float a; scanf ("%f",&a); if (a>=0) { …… 题解列表 2024年12月03日 3 点赞 0 评论 1050 浏览 评分:10.0
七行代码解决问题 摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))for i in range(len(a)): print(a[i],end=" ")print()fo…… 题解列表 2024年12月03日 0 点赞 0 评论 1476 浏览 评分:4.8
简单,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum; scanf ("%d %d",&x,&y); sum=x+y; …… 题解列表 2024年12月03日 7 点赞 0 评论 1526 浏览 评分:0.0
布尔类型变量 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <stdbool.h>int main (){ bool b; char c; printf ("%…… 题解列表 2024年12月03日 0 点赞 0 评论 1008 浏览 评分:0.0
C语言训练-水仙花数 摘要:解题思路:将所有三位数遍历,分别判断是否为水仙花数,是则输出。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int m; …… 题解列表 2024年12月03日 0 点赞 0 评论 771 浏览 评分:0.0
2925 ******自己复习用********** 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdbool.h>int main() { int n = 0; …… 题解列表 2024年12月03日 0 点赞 0 评论 580 浏览 评分:9.9
简易,易懂 摘要:解题思路:注意事项:参考代码:int main (){ int n; float sum=0; scanf ("%d",&n); float a[n]; for (int…… 题解列表 2024年12月03日 2 点赞 0 评论 945 浏览 评分:0.0
喔喔喔喔喔喔喔喔喔 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double f1=1,f2=2,sum=0,n,f3,temp; scanf("%lf",&n); sum+=…… 题解列表 2024年12月03日 1 点赞 0 评论 1030 浏览 评分:0.0