本人菜鸟 遇到C语言问题不知道如何,请大家帮帮忙?
我在弄一个C语言分数计算。我先定义了 A=90,B=80,C=70,D=60,E=0
然后我输入5个数,代指以上定义的,a,b,c,d,e,(随便定义的)
进入算法 grade = (a+b+c+d+e)/50
输出 grade 值
自己弱弱的写了一下
#include <stdio.h>
#include <string.h>
#define A = 90
#define B = 80
#define C = 70
#define D = 60
#define E = 0
main()
{
int a,b,d,c,e,grade;
printf("please put the 1 : ");
scanf(" %d",&a);
printf("please put the 2 : \n");
scanf(" %d",&b);
printf("please put the 3 : ");
scanf(" %d",&c);
printf("please put the 4 : \n");
scanf(" %d",&d);
printf("please put the 5 : ");
scanf(" %d",&e);
grade = (a + b + c +d + e)/50;
printf("%d",grade);
return 0;
}
我还需要怎么办呢,我是自学C语言的,每天都只是看书,写的很烂,不要吐槽哈,如能解决,万分感谢,我也是刚刚在这里注册,以后多交流。