当前位置:网站首页>99 multiplication table (C language)
99 multiplication table (C language)
2022-07-05 08:16:00 【chen_ bx】
c Language implementation of 99 multiplication table
The code is as follows :
#include "stdio.h"
int main()
{
int i, j;
int n = 9;
for (i = 1; i <= n; i++) {
for (j = 1; j <= i; j++) {
printf("%d*%d=%d", j, i, i*j);
if (i*j < 10) {
printf(" ");
}
else {
printf(" ");
}
}
printf("\n");
}
return 0;
}
Running results :
边栏推荐
- Basic embedded concepts
- Detailed explanation of SQL server stored procedures
- VESC Benjamin test motor parameters
- go依赖注入--google开源库wire
- [trio basic tutorial 16 from introduction to proficiency] UDP communication test supplement
- C WinForm [exit application] - practice 3
- Adaptive filter
- Compilation warning solution sorting in Quartus II
- Embedded composition and route
- UEFI development learning 5 - simple use of protocol
猜你喜欢
[paper reading] the latest transfer ability in deep learning: a survey in 2022
Shape template matching based on Halcon learning [v] find_ cocoa_ packages_ max_ deformation. Hdev routine
Consul installation
STM32 virtualization environment of QEMU
STM32 single chip microcomputer -- volatile keyword
Negative pressure generation of buck-boost circuit
Introduction of air gap, etc
Compilation warning solution sorting in Quartus II
Take you to understand the working principle of lithium battery protection board
C WinForm [get file path -- traverse folder pictures] - practical exercise 6
随机推荐
Briefly talk about the identification protocol of mobile port -bc1.2
C WinForm [get file path -- traverse folder pictures] - practical exercise 6
Semiconductor devices (I) PN junction
Several important parameters of LDO circuit design and type selection
UEFI development learning 5 - simple use of protocol
Measurement fitting based on Halcon learning [III] PM_ measure_ board. Hdev routine
Installation and use of libjpeg and ligpng
H264 (I) i/p/b frame gop/idr/ and other parameters
Explication de la procédure stockée pour SQL Server
Summary of SIM card circuit knowledge
Embedded composition and route
Arduino uses nrf24l01+ communication
Wifi-802.11 negotiation rate table
Working principle and type selection of common mode inductor
Measurement fitting based on Halcon learning [II] meaure_ pin. Hdev routine
Semiconductor devices (III) FET
[paper reading] the latest transfer ability in deep learning: a survey in 2022
UEFI development learning series
How to select conductive slip ring
Shape template matching based on Halcon learning [VII] reuse_ model. Hdev routine