#题目:利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来。 #函数赋值两个变量 def output(s,l): if l0: return print (s[l-1]) output(s,l-1)
s input(‘Input a string:’) l len(s) output(s,l)
#题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字
#!/usr/bin/python
-- coding: UTF-8 --
x int(input(“请输入一个数:\n”)) a x / 10000 b x % 10000 / 1000 c x % 1000 / 100 d x % 100…
#一个5位数,判断它是不是回文数。即12321是回文数, #个位与万位相同,十位与千位相同。 x int(input(‘输入一个五位数:’)) a int(x / 10000) b int(x % 10000 / 1000) c int(x % 1000 / 100) d int(x % 100 / 10) e int(x …
#题目:请输入星期几的第一个字母来判断一下是星期几
#!/usr/bin/python
-- coding: UTF-8 --
letter input(“please input:”) #while letter ! ‘Y’: if letter ‘S’: print (‘please input second letter:’) letter input(“please input:”) if lette…
Link: 传送门 A: 分层图最短路(其实就是最短路转移时多记录一维的数据 #include <bits/stdc.h>using namespace std;
#define X first
#define Y second
typedef double db;
typedef long long ll;
typedef pair<int,int> P;
const int MAXN105;
int n,…
#练习函数调用。
#!/usr/bin/python
-- coding: UTF-8 --
def hello_world(): print (‘hello world’)
def three_hellos(): for i in range(3): hello_world() if name ‘main’: three_hellos() #1:__name__是一个变量。前后加了下划线是因为是因为这是系统…