This file contains hidden or 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.Collections.Generic; | |
using Verse; | |
using RimWorld; | |
using Harmony; | |
using System.Reflection; | |
using System.Linq; | |
using System.Reflection.Emit; | |
public class CustomAction | |
{ |
This file contains hidden or 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
//it was written by madeline#1941. Rimworld Error string stack trace parser. | |
//no parameter parsing though. #FIXME | |
private static IEnumerable<Layer> ParseErrorString(string raw) | |
{ | |
List<Layer> layers = new List<Layer>(); | |
using (StringReader reader = new StringReader(raw)) | |
{ | |
var line = string.Empty; | |
while((line = reader.ReadLine()) != null) |
This file contains hidden or 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> | |
#include <stdlib.h> | |
#define N 150 | |
#define NUMBER 1 | |
#define MINUS 2 | |
#define FORMULA 3 | |
#define BARCKET_1 4 | |
#define BARCKET_2 5 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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*); |