本文目录一览:
-
4、c语言问题100
c语言编程实例100题
这里非常不错,不但有经典的100例,还有许多实用的例子,强烈推荐!!
C语言100题【程序90】 题目:专升本一题,读结果.为什么输出结果是12345??
while 执行了五次,下面是五次的a里的数据
5 2 3 4 1
5 4 3 2 1
5 4 3 2 1
5 2 3 4 1
1 2 3 4 5
换了又被换回去了,如果要真正实现交换,应该只执行5/2次
计算机二级c语言南开100题
以下资料已发,请注意查收
01 二级公共基础120题详解版.doc (233.5K)
02 二级公共基础09年3月冲刺复习资料.doc (92K)
03 二级公共基础辅导讲义.doc (805.5K)
04 二级公共基础考点解析.doc (260.5K)
05 二级公共基础试题及详解.doc (79.5K)
06 二级公共基础知识考点精讲.rar (101.98K)
07 二级公共基础知识试题.txt (52.92K)
08 二级公共基础知识习题(2009年3月).rar (31.83K)
09 二级公共基础总结.doc (61.5K)
10 二级公共基础知识教程.doc (427K)
11 公共基础知识要点及历年真题.pdf (469.88K)
12 二级公共基础复习大全.chm (137.79K)
13 数据结构与算法.doc (67.5K)
13 数据结构与算法习题.doc (54K)
01_2009年9月C语言及公共基础串讲资料.doc (243K)
02_2009年3月C语言笔试冲刺复习资料.doc (93K)
2010年九月二级C语言上机100题word版.doc (1.33M)
2010二级C语言南开100题.doc (93.5K)
c语言问题100
你的这句话应该说“传值类型的形参值得改变并不能改变对应实参的值,把数据从被调用函数返回到调用函数的唯一途径是通过return语句返回函数值”
C语言:求100题随机一位数整除两位数的算式,输出一行两题,一页25行,咋编?
代码文本:
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
int main(int argc,char *argv[]){
int n,m,t;
srand((unsigned)time(NULL));
for(t=0;t100;t++){
n=rand()%9+1;
while((m=rand()%90+10)%n);
printf(t1 ? "%d ÷ %d = \n" : "%d ÷ %d = \t\t",m,n);
if(t==49)
printf("\n\n");
return 0;
C语言题目,100分悬赏
第一题:已知某班N(〈=50)名学生进行了高数、英语和C语言等3门课考试,将3门课
的成绩以及计算3门课的总分存放于一个二维数组中,将学生姓名存放在另一个二维字
符数组中,按总分(由高到低)将学生姓名排序并输出排序结果(序号和姓名)。
#include "stdafx.h"
#include "stdio.h"
struct scoreInfo{
int scoreMath;
int scoreProC;
int scoreEng;
int scorSum;
struct studentInfo{
char name[20];
struct scoreInfo _scoreInfo;
void inputInfo(struct studentInfo *stu,int n)
int i = 0;
for(i = 0; i n; i++)
printf("第%d个学生的姓名:",i+1);
gets(stu[i].name);
printf("第%d个学生的数学成绩:",i+1);
scanf("%d",stu[i]._scoreInfo.scoreMath);
getchar();
printf("第%d学生的C语言成绩:",i+1);
scanf("%d",stu[i]._scoreInfo.scoreProC);
getchar();
printf("第%d个学生的英语成绩:",i+1);
scanf("%d",stu[i]._scoreInfo.scoreEng);
getchar();
printf("\n");
void outputInfo(struct studentInfo *stu,int n)
int i = 0;
for (i = 0; i n; i++)
stu[i]._scoreInfo.scorSum = stu[i]._scoreInfo.scoreEng + stu[i]._scoreInfo.scoreMath
+ stu[i]._scoreInfo.scoreProC;
printf("姓名\t数学成绩\tC语言成绩\t英语成绩\t总分\n");
for (i = 0; i n; i++)
printf("%s\t%d\t\t%d\t\t%d\t\t%d\n",stu[i].name,stu[i]._scoreInfo.scoreMath, stu
[i]._scoreInfo.scoreProC
,stu[i]._scoreInfo.scoreEng,stu[i]._scoreInfo.scorSum);
void arry_max_to_min(struct studentInfo *stu,int n)
int indexi;
int indexj;
struct studentInfo _temp;
// struct stdentInfo *ptemp;
// ptemp = stu;
for (indexi = 0; indexi n;indexi++)
for (indexj = indexi+1; indexj n; indexj++)
if (stu[indexi]._scoreInfo.scorSum stu[indexj]._scoreInfo.scorSum)
_temp = stu[indexj];
stu[indexj] = stu[indexi];
stu[indexi] = _temp;
printf("总分从高到低排列:\n");
for (indexi = 0 ; indexi n; indexi++)
printf("%s\t%d\t\t%d\t\t%d\t\t%d\n",stu[indexi].name,stu[indexi]._scoreInfo.scoreMath, stu
[indexi]._scoreInfo.scoreProC
,stu[indexi]._scoreInfo.scoreEng,stu[indexi]._scoreInfo.scorSum);
int main()
int studentNum;
struct studentInfo stu[50];
printf("输入学生数:");
scanf("%d",studentNum);
getchar();
inputInfo(stu,studentNum);
outputInfo(stu,studentNum);
arry_max_to_min(stu,studentNum);
return 0;
运行结果:
输入学生数:3
第1个学生的姓名:Jack
第1个学生的数学成绩:89
第1学生的C语言成绩:86
第1个学生的英语成绩:96
第2个学生的姓名:Tom
第2个学生的数学成绩:95
第2学生的C语言成绩:94
第2个学生的英语成绩:92
第3个学生的姓名:Star
第3个学生的数学成绩:98
第3学生的C语言成绩:78
第3个学生的英语成绩:89
姓名 数学成绩 C语言成绩 英语成绩 总分
Jack 89 86 96 271
Tom 95 94 92 281
Star 98 78 89 265
总分从高到低排列:
Tom 95 94 92 281
Jack 89 86 96 271
Star 98 78 89 265
Press any key to continue
第二题:编写函数fun(char s[ ], int num[ ]),其功能是统计字符串 s 中数字字符、大写字母、
小写字母和空格字符的出现次数,统计结果存于num数组中。再设计main函数,调用fun函数,
实现预期功能。
#include "stdafx.h"
#include "stdio.h"
#include "string.h"
void fun(char *s, int *num)
int length;
int index;
int sum_number = 0;
int sum_char = 0;
int sum_spac = 0;
int sum_CHAR = 0;
length = strlen(s);
for (index = 0; index length; index++)
if ((*s = '0') (*s = '9') )
sum_number++;
if ((*s = 'a') (*s 'z') )
sum_char++;
if ((*s = 'A') (*s = 'Z') )
sum_CHAR++;
if (*s == 0x20 )
sum_spac++;
s++;
num[0] = sum_number;
num[1] = sum_CHAR;
num[2] = sum_char;
num[3] = sum_spac;
int main()
char testarry[50];
int num[4];//用来放数字num[0],num[1]大写字母,num[2]小写字母,num[3]空格数字的个数
//num = (int *)malloc(sizeof(int) * 4);
printf("请输入字符串:");
gets(testarry);
fun(testarry,num);
// printf("%s",testarry);
printf("数字的个数:%d\n大写字母的个数:%d\n小写字母的个数:%d\n空格数字的个数:%d\n",
num[0],num[1],num[2],num[3]);
return 0;
运行结果:
请输入字符串:12345 AFASDFE 74897 asfdasf
数字的个数:10
大写字母的个数:7
小写字母的个数:7
空格数字的个数:3
Press any key to continue
第三题:
#include "stdafx.h"
#include "stdio.h"
int main()
int i;
int j;
int k;
int half = 0;
char prin;
prin = 'A';
for (i = 0; i 26; i++)
prin = 'A';
for (j = 26-i-1;j 0; j--)
printf(" ");
for (k = 1; k= 2*i+1 ;k++)
half = k;
if (--half = i)
printf("%c",prin++);
else
printf("%c",--prin - 1);
printf("\n");
return 0;
运行结果:
A
ABA
ABCBA
ABCDCBA
ABCDEDCBA
ABCDEFEDCBA
ABCDEFGFEDCBA
ABCDEFGHGFEDCBA
ABCDEFGHIHGFEDCBA
ABCDEFGHIJIHGFEDCBA
ABCDEFGHIJKJIHGFEDCBA
ABCDEFGHIJKLKJIHGFEDCBA
ABCDEFGHIJKLMLKJIHGFEDCBA
ABCDEFGHIJKLMNMLKJIHGFEDCBA
ABCDEFGHIJKLMNONMLKJIHGFEDCBA
ABCDEFGHIJKLMNOPONMLKJIHGFEDCBA
ABCDEFGHIJKLMNOPQPONMLKJIHGFEDCBA
ABCDEFGHIJKLMNOPQRQPONMLKJIHGFEDCBA
Press any key to continue
[附加说明:]由于百度在栏目里屏蔽了空格和TAB,所以看不出效果,把
需要的话你可以把Email给我 我发给你。打印效果这个上面看不出来。呵呵
Press any key to continue