摘要: 1 C语言大小写字母转换 2 3 1.完成一个大小写字母自动转换的程序,输入大写字母,程序可以输出小写字母,输入小写字母,可以输出大写字母#includeintmain(){ 4 charstr[10]; 5 inti=0; 6 gets(str); 7 while(str[i]){ 8 if(... 阅读全文
posted @ 2014-09-16 15:30 Flyzhcong 阅读(300) 评论(0) 推荐(0)
摘要: 参考: http://www.cnblogs.com/foreverking/articles/2341399.html 1typedef int Datatype;typedef struct node{ Datatype data; struct node * next;}Node... 阅读全文
posted @ 2014-09-16 12:33 Flyzhcong 阅读(410) 评论(0) 推荐(0)