-
抄写作业
经过这次作业我明白了我基本功本身就很不扎实,很多步想自己背着打可是根本就做不到,我发现我现在要做的根本就不是更层次的编写,而是回归基本功 -
例题抄写
1 结果: num:10101 name:LiLin sex:M addr:123 bei jing road Process exited after 0.4208 seconds with return value 50 请按任意键继续. . . 2 结果: 001 ke 77 002 fe 9 -
抄写作业1
#include int main() { struct Student { long int num; char name[20]; char sex; char addr[20]; } a={10101,"lilin",'M',"123 Bei Jing Road"}; printf("num=%d\n,name=%s\n,sex=%c\n,addr=%s\n",a.num,a.nam... -
例题抄写
1 w 852 p 96 The higher score is: 2 p 96.00 Process exited after 0.2245 seconds with return value 13 请按任意键继续. . . -
第四次作业(抄写第九章作业)
例题一 把一个学生的信息(包括学号、姓名、性别、住址)放在一个结构体变量中,然后输出这个学生的信息 例题二 输入2个学生的学号,姓名和成绩,输出成绩较高的学生的学号,姓名和成绩。 101 li 100102 er 89101 li 100.00 Process exited after 177.3 -
作业 4.9
1 结果: num:10101 name:LiLin sex:M addr:123 bei jing road Process exited after 0.4208 seconds with return value 50 请按任意键继续. . . 2 结果: 001 ke 77 002 fe 9 -
例题作业
1.#include #include main() { struct student {int num; char name[20]; char sex; int age; float score; char addr[30]; }; } 2.#include #include main() { struct Date { int month; int day; int year; }... -
手抄作业
#include #include main() { struct student {int num; char name[20]; char sex; int age; float score; char addr[30]; }; } -------------------------------- Process exited after 0.9698 seconds with ret... -
抄写作业
9.#include struct student { int num; char name[20]; char sex; int age; }; struct student stu[3]={{10101,"Li Lin",'M',18},{10102,"Zhang Fang",'M',19},{10103,"Wang Min",'F',20}}; int main() { struc... -
吕万鑫 第五次
#include #define PI 3.1415926 int main() { float l,s,r,v; printf("input radius:"); scanf("%f",&r); l=2.0*PI*r; s=PI*r*r; v=4.0/3*PI*r*r*r; printf("l=%10.4f\ns=%10.4f\nv=%...