题解列表
编写题解 1018: [编程入门]有规律的数列求和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
double a = 1, b = 2, x = 0, y = 0;
double term……
编写题解 1011: [编程入门]最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int a = 0, b = 0;
int x = 0, y = 0;
int i = ……
编写题解 1015: [编程入门]求和训练
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
double a = 0, b = 0, c = 0;
int i = 0;
doubl……
编写题解 1059: 二级C语言-等差数列
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n = 0;
int i = 0;
int sum = 0;
int ter……
1009 [编程入门]数字的处理与判断
摘要:解题思路:简单粗暴多个if直接搞定注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a,b,c,d,……
编写题解 1058: 二级C语言-求偶数和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n = 0;
int i = 0;
int sum = 0;
scan……
编写题解 1056: 二级C语言-温度转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
double F = 0;
scanf("%lf", &F);
printf("%……
2219: 蓝桥杯算法训练-大等于n的最小完全平方数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ int n; int ans; double s; scanf("%d"……