This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1231242141343141 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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*); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace Xft | |
{ | |
// Token: 0x020004D7 RID: 1239 | |
public class XWeaponTrail : MonoBehaviour | |
{ | |
// Token: 0x17000426 RID: 1062 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; //학번 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
typedef struct _Data | |
{ | |
char NationalName[5]; | |
int NationalCode; | |
} Data; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
int ReturnIndexByBookName(char []); | |
int SearchBookByAuthor(char []); | |
int _RentalBook(char []); | |
int _ReturnBook(char []); | |
int _PrintAllData(char); | |
typedef struct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
int ReturnIndexByBookName(char[]); | |
int SearchBookByAuthor(char[]); | |
int _RentalBook(char[]); | |
int _ReturnBook(char[]); | |
int _PrintAllData(char); | |
typedef struct |
OlderNewer