09 2022 档案

摘要:第一章:初识Python 1.三双引号“““”””可以包含换行符\n,和制表符\t,以及其他特殊字符。 para_str=""" 多行字符串可以使用制表符\t,也可使用换行符\n,甚至是代码#include<stdio.h> int main() { int a = 12; printf(a); } 阅读全文
posted @ 2022-09-29 16:15 kangobs 阅读(26) 评论(0) 推荐(0)
摘要:#include<stdio.h> int main() { void hanoi(int n,char one,char two,char three); int m; printf("Input the number of diskes:"); scanf("%d",&m); printf("T 阅读全文
posted @ 2022-09-24 10:23 kangobs 阅读(15) 评论(0) 推荐(0)
摘要:#include<stdio.h> #include<string.h> int main() { char str[101]; scanf("%s",str); int i; char c; //A-Z 65-90 //a-z 97-122 for(i=0;(c=str[i])!='\0';i++ 阅读全文
posted @ 2022-09-22 16:24 kangobs 阅读(46) 评论(0) 推荐(0)