题解列表

筛选

C语言--好理解

摘要:解题思路:简单的if语句的使用;注意事项:用pow(n,m)表示立方,不然只有75分。pow(n,m)代表n的m次方;参考代码:#include <stdio.h>int main(){    int……

C语言,结构数组

摘要:解题思路:呃,懒得写了参考代码:#include <stdio.h>typedef struct student{    char number[10];    char name[10];    c……

救援(总时间)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,x,y,num; double distance; double t……