Skip to content

Instantly share code, notes, and snippets.

View zzzz465's full-sized avatar
:octocat:

jungooji zzzz465

:octocat:
View GitHub Profile
@zzzz465
zzzz465 / asdf
Created March 12, 2019 14:29
asdf
1231242141343141
@zzzz465
zzzz465 / 고두범.py
Created April 25, 2019 12:20
고두범
import random
test_table = list()
for i in range(10):
i += 1
test_table += [i for x in range(100)] #1 100개, 2 100개, 3 100개...가 든 test_table 을 만드는 코드, 총 1000개가 test_Table 안에 들어있음
test_average = [(sum([random.choice(test_table) for x in range(10)])/10) for x in range(10000)]
import matplotlib.pyplot as plt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine.SceneManagement;
using UnityEngine;
using Xft;
using System.Reflection;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace Xft
{
// Token: 0x020004D7 RID: 1239
public class XWeaponTrail : MonoBehaviour
{
// Token: 0x17000426 RID: 1062
@zzzz465
zzzz465 / main에압축.c
Last active May 25, 2019 15:02
메인에압축시켜넣은거
#include <stdio.h>
int main()
{
int data[100][7] = {0}, n, code, koScore, EnScore, MathScore, input, KoScoreMin = 100, EnScoreMin = 100, MathScoreMin = 100, KoScoreMax = 0, EnScoreMax = 0, MathScoreMax = 0, KoScoreSum = 0, EnScoreSum = 0, MathScoreSum = 0;
scanf("%d", &n); // 몇줄짜리 데이터를 받는지 n에 저장합니다
for(int count = 0; count < n; count++) // 0부터 n-1까지 "n번" 반복합니다
{
scanf(" %d %d %d %d", &code, &koScore, &EnScore, &MathScore); // 학번, 국어, 영어, 수학 성적을 받습니다
data[count][0] = code; //학번
@zzzz465
zzzz465 / 과제2.c
Last active June 4, 2019 13:40
조별과제2
#include <stdio.h>
#include <string.h>
int mainLoop();
int AddWord();
int ShowAllDict();
int Search();
int ShowEnWords(int);
int isNullValue(char*);
int _AddNewWord(char*);
int _AddWord(char*, int);
@zzzz465
zzzz465 / C조별과제.c
Last active June 5, 2019 01:57
C조별과제입니다
#include <stdio.h>
//함수원형들
void printData();
void mainLoop();
void FindStudent(int);
void showAllData();
void printMetaData();
void readData(int);
void MaxEval(int, int*);
void MinEval(int, int*);
#include <stdio.h>
#include <string.h>
typedef struct _Data
{
char NationalName[5];
int NationalCode;
} Data;
@zzzz465
zzzz465 / ISBN.c
Created June 10, 2019 10:41
과제3-2(ISBN)
#include <stdio.h>
#include <string.h>
int ReturnIndexByBookName(char []);
int SearchBookByAuthor(char []);
int _RentalBook(char []);
int _ReturnBook(char []);
int _PrintAllData(char);
typedef struct
@zzzz465
zzzz465 / ISBN.c
Last active June 10, 2019 11:36
asdf
#include <stdio.h>
#include <string.h>
int ReturnIndexByBookName(char[]);
int SearchBookByAuthor(char[]);
int _RentalBook(char[]);
int _ReturnBook(char[]);
int _PrintAllData(char);
typedef struct