题解 1671: 小九九

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,a,b; b=1; for(i=0;i<9;i++){ a=1; for(j=0;j<=i……

小九九,简单粗暴

摘要:解题思路:因为他要求是写出”小九九“所以简单粗暴注意事项:不要忘加”<<endl;“参考代码:#include<bits/stdc++.h> using namespace std; int ma……

嵌套for循环输出九九乘法表

摘要:解题思路:运用嵌套的for循环输出乘法口诀表参考代码:#include <stdio.h> int main() {     for (int i = 1; i < 10; i++)   ……

小九九解法

摘要:解题思路:注意事项:参考代码:for j in range(1, 10):    for i in range(1, j+1):        z = i*j        print("{:d}*{……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int i,j;     for (i=1;i<10;i++)     {       ……

编写题解 1671: 小九九

摘要:public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(Syst……

1671: 小九九

摘要:解题思路:注意事项:乘积占两位参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=1;i……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=1;i<=9;i……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=1;i<=9;i……