실험 2
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define STUDENT_COUNT 5
#define RANGE_START 397
#define RANGE_END 476
#define SHORT_RANGE 21
int main() {
int counter;
int category;
int random_value;
srand(time(NULL));
counter = 0;
while(counter < STUDENT_COUNT) {
category ...
7월 27일 23:32에 게시됨