编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=…… 题解列表 2025年01月12日 0 点赞 0 评论 25 浏览 评分:0.0
小九九题解记得给好评 摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()…… 题解列表 2025年01月12日 0 点赞 0 评论 15 浏览 评分:0.0
题解 1671: 小九九 摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l…… 题解列表 2025年01月12日 0 点赞 0 评论 20 浏览 评分:0.0
小小练手(自学菜鸡版) 摘要:解题思路:如下注意事项:注意左对齐,(作者用了判断语句,但其实用%2.d最好了)参考代码:#include <stdio.h>int main(){ int a,b,c; for(a =1; a<10…… 题解列表 2024年10月19日 0 点赞 0 评论 110 浏览 评分:0.0
c语言方式解决 小九九 题目1671 摘要:解题思路:双重循环注意事项:打印算式的时候要注意空格的数量,以便对齐参考代码:#includeint main(){ int a,b,c; for(a=1;a<=9;a++) { …… 题解列表 2024年10月10日 0 点赞 0 评论 291 浏览 评分:9.9
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ for(int i=1; i<=9; i++) …… 题解列表 2024年07月19日 0 点赞 0 评论 264 浏览 评分:9.9
超简单C代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ …… 题解列表 2024年07月08日 0 点赞 0 评论 75 浏览 评分:0.0
161:小九九 摘要:参考代码:#include <stdio.h>int main(){ int i,j; for(i=1;i<=9;i++) { for(j=1;j<=i;j++) …… 题解列表 2024年06月13日 0 点赞 0 评论 187 浏览 评分:9.9
无聊的星期六 摘要:解题思路:注意事项:参考代码:for i in range(1,10): for j in range(1,i+1): print(f'{j}*{i}={i*j:<…… 题解列表 2024年04月27日 0 点赞 0 评论 132 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:for i in range(1, 10): for j in range(1, i + 1): print("%.d*%.d=%.d" %(…… 题解列表 2024年04月16日 0 点赞 0 评论 102 浏览 评分:0.0