- 博客(4)
- 收藏
- 关注
原创 C语言第八章课后14题
输入10个学生5门课的成绩,分别用函数实现下列功能:计算每个学生的平均分;计算每门课的平均分;找出所有50个分数中最高的分数所对应的学生和课程;计算平均分方差:s=1n∑x2i−(∑xin)2s=1n∑xi2−(∑xin)2其中,xi为某一学生的平均分代码如下:#include <stdio.h>#include<stdlib.h>const i...
2019-07-30 19:39:16 418
原创 输出魔方阵
代码如下:#include <stdio.h>int main(){ const int n = 5; int a[n][n] = { 0 }; int i = 0; int j = n / 2; int row, col; for (int k = 1; k <= n*n; ++k) { a[i][j] = k; row = i-1; col ...
2019-07-25 15:23:20 237
原创 一个简单的小游戏
代码:#include <graphics.h> #include <conio.h>#include <time.h>#include"mmsystem.h" #pragma comment(lib,"winmm.lib")const int BoardW = 5;const int BoardH = 5;const in...
2019-07-23 18:25:14 260
原创 输出一个由*号组成的菱形图案
代码如下:#include<stdio.h>#include<stdlib.h>void main(){ int x, y, z; int n; scanf("%d", &n); for (x = 1; x <= n; x += 2) { for (y = (n - x) / 2; y >= 1; y--) { pri...
2019-07-21 22:49:24 5832
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人