计科2016-4 (黑龙江科技大学)

  • 抄写作业

    经过这次作业我明白了我基本功本身就很不扎实,很多步想自己背着打可是根本就做不到,我发现我现在要做的根本就不是更层次的编写,而是回归基本功
    月光航线   2017-04-10 15:49   0   465
  • 例题抄写

    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
    4班李莹   2017-04-10 15:44   0   121
  • 抄写作业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...
    曾祥刚   2017-04-10 15:37   0   154
  • 例题抄写

    1 w 852 p 96 The higher score is: 2 p 96.00 Process exited after 0.2245 seconds with return value 13 请按任意键继续. . .
    lqnyzk   2017-04-10 15:31   0   241
  • 第四次作业(抄写第九章作业)

    例题一 把一个学生的信息(包括学号、姓名、性别、住址)放在一个结构体变量中,然后输出这个学生的信息 例题二 输入2个学生的学号,姓名和成绩,输出成绩较高的学生的学号,姓名和成绩。 101 li 100102 er 89101 li 100.00 Process exited after 177.3
    李胡仪   2017-04-09 22:52   0   342
  • 作业 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
    孙鸣阳   2017-04-09 22:44   0   131
  • 例题作业

    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; }...
    zhangyi12   2017-04-09 22:24   0   275
  • 手抄作业

    #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...
    员始猿   2017-04-09 21:58   0   111
  • 抄写作业

    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...
    张伯瑞   2017-04-09 21:55   0   290
  • 吕万鑫 第五次

    #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=%...
    无谓派   2017-04-09 21:42   0   215