Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
328808 黄浙峰老师 【C1-4】分享水果 C++ Accepted 100 3 MS 240 KB 212 2025-07-07 15:29:45

Tests(2/2):


#include<iostream> using namespace std; int main(){ char a,b,c,d; cin>>a>>b>>c; //实现a,b互换 d=a; a=b; b=d; //实现a,c互换 d=a; a=c; c=d; cout<<a<<" "<<b<<" "<<c; return 0; }


Judgement Protocol: