摘要:
Part 1 #include <stdio.h>#include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int s 阅读全文
摘要:
#include<stdio.h> int main() { printf("201983270553"); return 0; } #include<stdio.h> int product(int,int); int main(void) { int x,y,s; scanf("%d%d",&x,&y); s=product(x,y); printf("The mul is:%d",s); r 阅读全文