您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. PAT (Basic Level) 1006 换个格式输出整数

  2. 题意 对于给定的三位正整数,按指定格式输出。 思路 模拟即可。 代码 #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int n; cin >> n; vector a(3); for (int i = 0; i < 3; ++i) { a[i] = n ; n /= 10; } re
  3. 所属分类:其它

    • 发布日期:2021-01-03
    • 文件大小:22528
    • 提供者:weixin_38567956