pythonExample100/JCP045.py

12 lines
193 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

'''
【程序45】
题目学习使用register定义变量的方法。
1.程序分析:
2.程序源代码:
没有register关键字用整型变量代替
'''
tmp = 0
for i in range(1,101):
tmp += i
print 'The sum is %d' % tmp