上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 51 下一页
#define M 4#define N 4#include#include#includevoid main(){ int i,j,t; int a[M][N]={{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}}; clrscr(); for(i=0;i<M;i++) { for(j=0;j<N;j++) printf("%5d",a... Read More
posted @ 2007-04-25 17:34 齐心 Views(865) Comments(0) Diggs(0) Edit
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication1{ public... Read More
posted @ 2007-04-16 18:07 齐心 Views(540) Comments(0) Diggs(0) Edit
1、 #include#includevoid main(){ int *a,*b,*c,*min; a=(int *)malloc(sizeof(int)); b=(int *)malloc(sizeof(int)); c=(int *)malloc(sizeof(int)); min=(int *)malloc(sizeof(int)); printf("输... Read More
posted @ 2007-02-15 22:54 齐心 Views(370) Comments(0) Diggs(0) Edit
给定学生成绩登记表如表9.1所示。 学号(num) 姓名(name) 成绩(grade) ... Read More
posted @ 2007-01-24 15:21 齐心 Views(1033) Comments(0) Diggs(0) Edit
设计一个程序,统计一个班(最多有35人)的学生成绩,要求能实现如四个功能: (1)由键盘输入每个学生的学号和四门课程的成绩。 (2)计算每个学生的平均分和总分。 (3)按总分从高到低排出名次,并按名次输出每个学生的情况,包括:学号、各科成绩、平均分和总分。 (4)根据用户要求输出某门课程(由键盘输入课程号)成绩在90分以上(含90分)且总分在前五名的学生情况,包括:学号、各科成... Read More
posted @ 2007-01-24 15:18 齐心 Views(2104) Comments(1) Diggs(0) Edit
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 51 下一页