6 条题解

  • 0
    @ 2022-7-29 13:02:02
    #include<bits/stdc++.h> 
    using namespace std;
    int main(){
    	int n;
    	cin>>n;
    	if(n%100%10==0){
    	cout<<n/10%10<<n/100;
    	}else{
    	cout<<n%100%10<<n/10%10<<n/100;	
    	}
    	return 0;
    }
    

    【入门】输入一个三位数,把个位和百位对调后输出

    信息

    ID
    21
    时间
    1000ms
    内存
    16MiB
    难度
    2
    标签
    递交数
    149
    已通过
    93
    上传者