题解列表

筛选

c语言简单易懂!!!

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int ctof(int n){    int s;    s=32+n*9/5;    return s;}int main (){……

c语言简单,代码少,易懂!!!

摘要:解题思路:注意事项:该坐标行列元素是从1开始的!!!参考代码:#include <stdio.h>int main (){    int n;    int max,max_i,max_j;    i……

c语言简单 优解!!!

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){    int a,b,c;    //分别记录人数!!!    a=b=c=0;    int n;    ……

c语言简单,易懂!!!

摘要:解题思路:注意事项:参考代码:#include <stdio.h>double f (int n){    if (n==0||n==1){        return 1;    }else {  ……

C语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int n, m,i,j;    char name[11][21];……

第n小的质数(缩小循环)

摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); int a=2,k=0;//k是累计出现的质数 ……