摘要: 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:45 littlelittleprince 阅读(1195) 评论(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-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) 编辑