思路简单,清晰明了 摘要:#没啥难的,就是注意一下细节 #####注意那个 %-md(左对齐的用法) ,并且弄清楚是单一一个占8位字符,还是全部占8位字符 #####上代码: ``` #include #i…… 题解列表 2021年04月04日 0 点赞 1 评论 1738 浏览 评分:9.9
题目 1807: [编程基础]输入输出练习之格式控制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%-8d%-…… 题解列表 2021年04月11日 0 点赞 1 评论 2863 浏览 评分:9.9
C++简单解法 摘要:#include#includeusing namespace std;int main(void){ long long a,b,c; cin>>a>>b>>c; …… 题解列表 2025年02月28日 0 点赞 0 评论 288 浏览 评分:10.0