摘要:
#include <stdio.h> #include <assert.h> #define MAX_N 10 int in_car_num = 0; struct cars{ int id; int in_time; }; void come_in_car(int c_id, int c_time 阅读全文
摘要:
第一题 #include <stdio.h> int main(void){ printf("hello, world"); return 0; } 第二题 #include <stdio.h> int main(void){ printf("hello, world\c12"); return 0 阅读全文