首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴xiaowen13的代码贴C语言
#include<stdio.h>
   intmain()
   {      
        printf("xiaowenbao\n”);
        return0;
    }
阅读全部 | 2022年10月3日 08:41
#include<stdio.h>
   int main()
   {      
        printf("xiaowenbao\n”);
        return 0;
    }
阅读全部 | 2022年10月3日 08:40
#include<stdio.h>
   int main()
   {      
        printf("xiaowenbao\n”);
        return 0;
    }
阅读全部 | 2022年10月3日 08:38
#include<stdio.h>
   int main()
   {      
        printf("肖汶葆”);
        return 0;
    }
阅读全部 | 2022年10月3日 08:38
#include<stdio.h>
   int main()
   {      
        printf("肖汶葆”)
        return 0
    }
阅读全部 | 2022年10月3日 08:37
/**
 * 【程序2】
 * 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月
 *       后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
 * 程序分析:兔子的规律为数列1,1,2,3,5,8,13,21....
 */

#include<stdio.h>

int main() {
    long f1,f2;
    int i;
......................
阅读全部 | 2022年10月3日 08:27
/**
 * 【程序2】
 * 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月
 *       后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
 * 程序分析:兔子的规律为数列1,1,2,3,5,8,13,21....
 */

#include<stdio.h>

int main() {
    long f1,f2;
    int i;
......................
阅读全部 | 2022年10月3日 08:24
/**
 * 【程序4】
 * 题目:用星号绘制余弦曲线和直线。
 */

#include <stdio.h>
#include <math.h>

int main() {
    double y;
    int xc;
    int xx;
......................
阅读全部 | 2022年10月3日 08:24
/**
 * 【程序1】
 * 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
 * 程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去掉不满足条件的排列。
 */

#include<stdio.h>

int main() {
    int i, j, k;
    for (i = 1; i < 5; i++) {   //以下为三重循环
        for (j = 1; j < 5; j++) {
......................
阅读全部 | 2022年10月3日 08:23
上一页 1 2
xiaowen13