题解列表
1054: 二级C语言-计算素数和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int func(int x);
int main()
{
int a,n;
int sum = 0;
……
1091: A+B for Input-Output Practice (VII)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int func(int x,int y);
int main() {
int n, j;
int sum = 0;……
1112: C语言考试练习题_一元二次方程
摘要:解题思路:注意事项:参考代码:#include <math.h>
#include <stdio.h>
int main() {
double a, b, c;
double x1, ……
2760: 整型与布尔型的转换(细节)
摘要:####这样写,在编译器上能过,但提交后会显示编译错误
```c
#include
int main()
{
int a,b;
bool c;
scanf("%d",&a);
……
C语言训练-求矩阵的两对角线上的元素之和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int arr[100][100];
int n,i,j;
int sum……
C语言训练-邮票组合问题*
摘要:解题思路:注意事项:参考代码: #include<stdio.h>
int main()
{
printf("19");
return 0;
}……
二级C语言-自定义函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<math.h>
double fact(long long n);
double my_pow(double ……
[编程入门]结构体之成绩统计2
摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student { char num[20]; char name[10]; doubl……