Cypher

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit da637e70568e0015b31db977521b35e4edbba2d9
parent d236a443956bb01135f23fb94c8756c2877c81a9
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date:   Thu,  9 Jun 2022 17:30:34 +0900


Diffstat:
MProgram.cs | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/Program.cs b/Program.cs @@ -306,3 +306,19 @@ static void encrypt() } writer.Close(); } + + +void CreateDate() +{ + string whereCreateDateFile = Question("where do you want to create test date file?"); + int[] date = new int[100]; + for(int i = 0; i < date.Length; i++) + { + date[i] = i; + } + StreamWriter streamWriter = new StreamWriter(whereCreateDateFile); + for(int i = 0; i < date.Length; i++) + { + streamWriter.WriteLine(date[i]); + } +}+ \ No newline at end of file