当前位置:网站首页>Example 008: 99 multiplication table
Example 008: 99 multiplication table
2022-07-05 08:22:00 【Lazy smile】
example 008: multiplication table
subject : Output 9*9 Multiplication table .
Program analysis : Branch and column considerations , common 9 That's ok 9 Column ,i The control line ,j Control the column .
# The first i Yes i Column ,range It is a semi closed and semi open interval, so range Need to go to i+1 # For better output , Set the result of multiplication to %-2d That accounts for 2 position ,- Indicates left alignment , No addition - Is the default right alignment end='' That is, no line break after output
The code is as follows :
for i in range(1, 10):
for j in range(1, i + 1): # The first i Yes i Column ,range It is a semi closed and semi open interval, so range Need to go to i+1
print('%d*%d=%-2d ' % (i, j, i * j), end='') # For better output , Set the result of multiplication to %-2d That accounts for 2 position ,- Indicates left alignment , No addition - Is the default right alignment end='' That is, no line break after output
print() # Line break The output is as follows :
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25
6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36
7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49
8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64
9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 
边栏推荐
- DokuWiki deployment notes
- [three tier architecture]
- MySQL MHA high availability cluster
- [trio basic tutorial 16 from introduction to proficiency] UDP communication test supplement
- UE像素流,来颗“减肥药”吧!
- OLED 0.96 inch test
- OC and OD gate circuit
- Array integration initialization (C language)
- Problem solving: interpreter error: no file or directory
- Hardware and software solution of FPGA key chattering elimination
猜你喜欢
![C WinForm [exit application] - practice 3](/img/25/30c795cc3fa6931eb1d733719d4ad0.jpg)
C WinForm [exit application] - practice 3

After installing the new version of keil5 or upgrading the JLINK firmware, you will always be prompted about the firmware update
![[trio basic from introduction to mastery tutorial XIV] trio realizes unit axis multi-color code capture](/img/c5/22c6148873508b9205972e1ad970a3.jpg)
[trio basic from introduction to mastery tutorial XIV] trio realizes unit axis multi-color code capture
![[trio basic from introduction to mastery tutorial 20] trio calculates the arc center and radius through three points of spatial arc](/img/9e/2524cbb9b90135c54669ba8d5338b7.jpg)
[trio basic from introduction to mastery tutorial 20] trio calculates the arc center and radius through three points of spatial arc

Hardware and software solution of FPGA key chattering elimination

Several important parameters of LDO circuit design and type selection

Keil use details -- magic wand

The firmware of the connected j-link does not support the following memory access

Solutions to compilation warnings in Quartus II
![[trio basic tutorial 17 from getting started to mastering] set up and connect the trio motion controller and input the activation code](/img/58/576b6b77509ed7a9bef138f3899e37.jpg)
[trio basic tutorial 17 from getting started to mastering] set up and connect the trio motion controller and input the activation code
随机推荐
QEMU STM32 vscode debugging environment configuration
Hardware 1 -- relationship between gain and magnification
Stablq of linked list
[tutorial 15 of trio basic from introduction to proficiency] trio free serial communication
matlab timeserise
STM32 single chip microcomputer -- debug in keil5 cannot enter the main function
MySQL之MHA高可用集群
UE像素流,来颗“减肥药”吧!
Stm32--- systick timer
Live555 push RTSP audio and video stream summary (I) cross compilation
Compilation warning solution sorting in Quartus II
Problem solving: interpreter error: no file or directory
Soem EtherCAT source code analysis II (list of known configuration information)
STM32---IIC
Slist of linked list
DCDC circuit - function of bootstrap capacitor
实例009:暂停一秒输出
FIO测试硬盘性能参数和实例详细总结(附源码)
OC and OD gate circuit
Shape template matching based on Halcon learning [VII] reuse_ model. Hdev routine