#C语言程序设计实验报告 姓名:邓文超?实验地点:宿舍 ###1.实验项目7.3.1(1) 问题的简单描述:数组的交换没弄好。 实验代码: #include"stdio.h" #include"stdlib.h" #include"time.h" void sort1(int a[]) { int ...
分类:
编程语言 时间:
2021-06-23 17:10:57
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #define OK 1 #define Error 0 typedef int Status; //栈 typedef struct StackNode { int data; struct StackNode *next; ...
分类:
其他好文 时间:
2021-06-21 20:35:07
阅读次数:
0
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<windows.h>typedef struct student //定义结构体 { char name[20]; //姓名 char num[15]; //学号 char s ...
分类:
其他好文 时间:
2021-06-21 20:34:02
阅读次数:
0
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:
其他好文 时间:
2021-06-21 20:33:31
阅读次数:
0
//如果一个渔夫从 2011 年 1 月 1 日开始三天打渔,两天晒网,编程实现当输入 2011 1 月 1 日以后的任意一天,输出该渔夫是在打渔还是在晒网。 #include <stdio.h> int leap(int a) /*自定义函数leap()用来指定输入的年份是否为闰年*/ { if ...
分类:
编程语言 时间:
2021-06-20 18:42:28
阅读次数:
0
以输出国际象棋棋盘为例,这里我们需要用到ascll值为219的扩展字符。首先我们给出代码: #include "stdio.h" int main() { int i,j; for(i=0;i<8;i++) { for(j=0;j<8;j++) if((i+j)%2==0) printf("%c%c ...
分类:
编程语言 时间:
2021-06-19 19:36:31
阅读次数:
0
任务三: 1、在屏幕上正确输出了按分数由高→低排序的信息,且生成了文本文件file3.dat。2、用记事本程序打开文件file3.dat,里面的数据信息是正确的,并且是直观可读的。 #include<stdio.h> #include<stdlib.h> #define N 10 typedef s ...
分类:
其他好文 时间:
2021-06-19 18:45:07
阅读次数:
0
#include <stdio.h> int main() { char sh[13][6]={"个","十","百","千","万","十万","百万","千万","亿","十亿","百亿","千亿","万亿"}; // int cc=0; // for(cc=0;cc<=13;cc++) // ...
分类:
编程语言 时间:
2021-06-18 19:37:12
阅读次数:
0
CMD的控制字符输出 小实验: 1 #include<stdio.h> 2 int main() 3 { 4 int i; 5 for(i=0;i<256;i++) 6 printf("%d:%c\t",i,i); 7 return 0;; 8 } 输出 看这输出,一些地方有些问题啊,如7,8,9, ...
分类:
其他好文 时间:
2021-06-18 19:36:50
阅读次数:
0
// 从文本数据文件file1.dat中读入数据,按成绩从高到低排序,将排序结果输出到屏幕上,同时以文本方式存入文件file3.dat中。 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef stru ...
分类:
其他好文 时间:
2021-06-18 19:29:15
阅读次数:
0