#39405: cpp


yp11251120@yphs.tp.edu.tw (708-43劉濟緯)

學校 : 臺北市私立延平高級中學
編號 : 237257
來源 : [203.72.178.1]
最後登入時間 :
2024-04-18 17:28:22
k152. 文文與她的距離 (楚河漢界篇) -- 板橋高中教學題 | From: [118.150.212.230] | 發表日期 : 2024-02-15 13:40

#include <bits/stdc++.h>

using namespace std;

int main()
{
    ios::sync_with_stdio(0); 
    cin.tie(0);
    string a,b;
    cin>>a>>b;
    cout<<"|"<<a;
    for(int i=0; i<(10-a.length()); i++)
    {
        cout<<" ";
    }
    cout<<"|";
    for(int i=0; i<(10-b.length()); i++)
    {
        cout<<" ";
    }
    cout<<b<<"|"<<endl;
    
    
}

 
ZeroJudge Forum