您的位置:

c语言不会的题,c语言完全不会

本文目录一览:

大一初学C语言有若干不会的题,求解

///第一题改错:

#include stdio.h

mian()

{

int r2=5;//变量名不能为数字开头,将2r改成r2即可

char _3x='A';//同上变量名不能以-号开头,将-改成_即可,或者改成x3也行

double i=10.5;//不能将关键字void作为变量名称,这里我把变量名称命名为i,即改成:double i = 10.5;

printf("r2=%d, _3x=%c, i =%f\n",r2,_3x, i);//这句就将上面改过名字替换就行了

}

//第二题:

//计算56,80,79这3个整数的平均值。在工作区下建立工程sy02p2,并建立源程序sy02p2.c,拷备以下代码到sy02p2.c中,以下程序已经实现计算过程的主要代码,在(1)和(2)两处补充相应的变量定义,使得该程序能够正确执行并显示出正确结果,提交sy02p2.c到本题答案处。

#include stdio.h

main()

{

int a,b,c;

float s;

a=55;

b=80;

c=79;

s=(a+b+c)*1.0/3;

printf("s=%f\n",s);

}

//望采纳!!!

关于C语言有几道题不会,求助大神

C正确,选C——下标从0开始,所以a[2]的值是3,a[a[2]]就是a[3],显然a[3]是第4个数值是4。

C

A

没有正确选项,输出是23

C

C

A

C

C

没有正确选项,应该是fun(10,12.5);这种形式

B

C语言题目如下,实在不会

/* 第一题如下 */

#include stdio.h

#include stdlib.h

typedef struct Student {

    char name[16];

    int math;

    int english;

    int computer;

    int average;

} Student;

int compare_student_by_average(const Student *, const Student *);

void get_string(char *, size_t);

#define N 5

int main(void) {

    Student students[N];

    int i;

    for (i = 0; i  N; ++i) {

        printf("Enter the name of the student: ");

        get_string(students[i].name, 16);

        printf("Enter the math, English and computer of the student: ");

        scanf("%d %d %d%*c",

            students[i].math, students[i].english, students[i].computer);

        students[i].average =

            (students[i].math + students[i].english + students[i].computer) / 3;

    }

    qsort(students, N, sizeof(Student),

        (int (*) (const void *, const void *))compare_student_by_average);

    for (i = 0; i  N; ++i) {

        if (students[i].average = 60)

            printf("%16s %3d %3d %3d\n", students[i].name, students[i].math,

                students[i].english, students[i].computer);

    }

    return 0;

}

int compare_student_by_average(const Student *s1, const Student *s2) {

    return (s1-average  s2-average ? 1 :

                (s1-average == s2-average ? 0 : -1));

}

void get_string(char *str, size_t size) {

    size_t i = 0;

    int ch = 0;

    while ((ch = getchar()) != '\n')

        if (i  size)

            str[i++] = (char)ch;

    str[i] = '\0';

}

第二题

#include stdio.h

#include stdlib.h

typedef struct Student {

    char name[16];

    int math;

    int english;

    int computer;

    int average;

} Student;

int compare_student_by_average(const Student *, const Student *);

void get_string(char *, size_t);

int main(void) {

    Student *students;

    int i, N;

    printf("Enter the number of the students: ");

    scanf("%d%*c", N);

    students = malloc(sizeof(Student) * N);

    for (i = 0; i  N; ++i) {

        printf("Enter the name of the student: ");

        get_string(students[i].name, 16);

        printf("Enter the math, English and computer of the student: ");

        scanf("%d %d %d%*c",

            students[i].math, students[i].english, students[i].computer);

        students[i].average =

            (students[i].math + students[i].english + students[i].computer) / 3;

    }

    qsort(students, N, sizeof(Student),

        (int (*) (const void *, const void *))compare_student_by_average);

    for (i = 0; i  N; ++i)

        printf("%16s %3d %3d %3d\n", students[i].name, students[i].math,

            students[i].english, students[i].computer);

    return 0;

}

int compare_student_by_average(const Student *s1, const Student *s2) {

    return (s1-average  s2-average ? 1 :

                (s1-average == s2-average ? 0 : -1));

}

void get_string(char *str, size_t size) {

    size_t i = 0;

    int ch = 0;

    while ((ch = getchar()) != '\n')

        if (i  size)

            str[i++] = (char)ch;

    str[i] = '\0';

}

关于C语言作业有几道题不会,求助

单选题:

1、以下可作为函数 fopen 中第一个参数的正确格式是

C

A、c:\user\file.txt

B、"c:\user\file.txt"

C、"c:\\user\\file.txt

D、c:user\file.txt

2、已知结构体类型定义和变量说明,下面赋值语句中正确的是_____。 struct complex { float re,im; }z;

D 应该是z.re=10.0

A、re=10.0;

B、complex.re=10.0;

C、z→re=10.0;

D、zre=10.0

3、以下叙述中正确的是_____。

B

A、全局变量的作用域一定比局部变量的作用域范围大

B、静态(static)类别变量的生存期贯穿于整个程序的运行期间

C、函数的形参都属于全局变量

D、未在定义语句中赋初值的auto变量和static变量的初值都是随机值

4、下列叙述中错误的是______。

A

A、主函数中定义的变量在整个程序中都是有效的

B、在其它函数中定义的变量在主函数中也不能使用

C、形式参数也是局部变量

D、复合语句中定义的变量只在该复合语句中有效

5、在一个C源程序文件中,若要定义一个只允许在该源文件中所有函数使用的变量,则该变量需要使用的存储类别是______。

C

A、extern

B、register

C、auto

D、statlc

判断题:

1、 已知char ch[]=“good!!!”;则字符数组ch的长度是7。

2、变量的指针就是指向该变量指针变量的值。