a186: 短還要更短
標籤 : string
通過比率 : 1人/8人 ( 12% ) [非即時]
評分方式:
Tolerant

最近更新 : 2019-11-03 16:38

內容

進階助教都喜歡把程式碼壓的盡量短

常常導致程式碼不易閱讀

現在請你把程式碼壓到不能再壓

除了巨集不能壓以外

其他的程式碼都可以壓成一行

巨集以外同一行裡面如果有空白也盡量拿掉

輸入說明

一份code

輸出說明

壓過的code

範例輸入
#include <iostream>
#include<cctype>
#include <algorithm>
#define endl '\n'
using namespace std;
int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int a=5, &ptr=a;
    cout << ptr << endl;
	return 0;
}
範例輸出
#include <iostream>
#include<cctype>
#include <algorithm>
#define endl '\n'
using namespace std;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);int a=5,&ptr=a;cout<<ptr<<endl;return 0;}
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (20%): 1.0s , <1M
公開 測資點#1 (20%): 1.0s , <1M
公開 測資點#2 (20%): 1.0s , <1M
公開 測資點#3 (20%): 1.0s , <1M
公開 測資點#4 (20%): 1.0s , <1M
提示 :

話說這題是A186...沒,什麼都沒有

標籤:
string
出處:
108學年度進階班期中考考題 [管理者:
fdhs107_KonChin... (konchin)
]


編號 身分 題目 主題 人氣 發表日期
沒有發現任何「解題報告」