编写题解 1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> void matha(float a,float b,float c,double delta)…… 题解列表 2024年05月29日 0 点赞 0 评论 270 浏览 评分:0.0
1083Hello, world!(一个while解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a; while(scanf("%d",&a)!=EOF&&a!=&…… 题解列表 2024年05月29日 0 点赞 0 评论 520 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:```c #include struct Data{ int year; int month; int day; }data; int main() { …… 题解列表 2024年05月29日 0 点赞 0 评论 159 浏览 评分:9.9
1093字符逆序(一个while和for循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[105]; char c; int i=0; while(sc…… 题解列表 2024年05月29日 0 点赞 0 评论 405 浏览 评分:0.0
编写题解 1029: [编程入门]自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> int count(int num) { int i; for(i=…… 题解列表 2024年05月28日 0 点赞 0 评论 340 浏览 评分:0.0
水仙花数判断(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int a=0,b=0,c=0; for(int i=100;i<1000;i++){ …… 题解列表 2024年05月28日 0 点赞 0 评论 135 浏览 评分:0.0
求和训练(c语言) 摘要:解题思路:注意事项:进行倒数和相加时,需要为1.0/c,如果为1/c,结果会比原值小;参考代码:#include <stdio.h> void fun(int a,int b,int c){ i…… 题解列表 2024年05月28日 0 点赞 0 评论 326 浏览 评分:0.0
二次C语言-等差数列 摘要:解题思路:使用for循环参考代码:#include<stdio.h>int main(){int i, num, grade = 2, total = 0;scanf("%d",&num);for(i…… 题解列表 2024年05月28日 0 点赞 1 评论 665 浏览 评分:9.9
阶乘求和(c语言) 摘要:解题思路:注意事项:要注意类型为long long int 型,否则会溢出,导致错误参考代码:#include <stdio.h> long long int fun(int n){ long …… 题解列表 2024年05月28日 0 点赞 0 评论 262 浏览 评分:0.0
java--study||O.o 摘要:模拟参考代码: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamRead…… 题解列表 2024年05月28日 0 点赞 0 评论 253 浏览 评分:10.0