编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:for i in range(1, 10): for j in range(1, i + 1): print("%.d*%.d=%.d" %(…… 题解列表 2024年04月16日 0 点赞 0 评论 531 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:for i in range(1,10): for j in range(1,i+1): print(f'{j}*{i}={i*j:<…… 题解列表 2024年04月27日 0 点赞 0 评论 210 浏览 评分:0.0
超简单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 评论 172 浏览 评分:0.0
小小练手(自学菜鸡版) 摘要:解题思路:如下注意事项:注意左对齐,(作者用了判断语句,但其实用%2.d最好了)参考代码:#include <stdio.h>int main(){ int a,b,c; for(a =1; a<10…… 题解列表 2024年10月19日 0 点赞 0 评论 329 浏览 评分:0.0
题解 1671: 小九九 摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l…… 题解列表 2025年01月12日 0 点赞 0 评论 143 浏览 评分:0.0
小九九题解记得给好评 摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()…… 题解列表 2025年01月12日 0 点赞 0 评论 179 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=…… 题解列表 2025年01月12日 0 点赞 0 评论 262 浏览 评分:0.0