摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace day01 8 { 阅读全文
posted @ 2019-04-09 15:05 littlelittleprince 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 5 struct Student 6 { 7 int id; 8 string name; 9 Student* next; 10 }; 11 void print 阅读全文
posted @ 2019-04-09 10:54 littlelittleprince 阅读(1811) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 5 char findCharByIndex(char* stringValue,int index); 6 int charLength(char* string 阅读全文
posted @ 2019-04-09 09:46 littlelittleprince 阅读(2160) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 using System.Collect 阅读全文
posted @ 2019-04-08 17:05 littlelittleprince 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 using System.Collect 阅读全文
posted @ 2019-04-08 16:19 littlelittleprince 阅读(3860) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 using System.Collect 阅读全文
posted @ 2019-04-08 12:42 littlelittleprince 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 using System.Collect 阅读全文
posted @ 2019-04-08 10:14 littlelittleprince 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 using System.Collect 阅读全文
posted @ 2019-04-07 22:01 littlelittleprince 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace day01 8 { 阅读全文
posted @ 2019-04-07 21:39 littlelittleprince 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 实验代码一 1 #include <iostream> 2 using namespace std; 3 4 //<<像程序员一样思考>> 实现Luhn检验和实现 5 //Luhn原理 标识号 最后一位是检验数字 6 //回车 ASC码值 10 7 int method(int temp); 8 b 阅读全文
posted @ 2019-04-06 22:23 littlelittleprince 阅读(419) 评论(0) 推荐(0) 编辑