3 条题解

  • 1
    @ 2023-3-28 19:24:24

    #include <bits/stdc++.h> using namespace std; int main() { int n,a,b; cin>>n; cout<<fixed<<setprecision(1)<<(n/10)*1.0/(n%10); }

    • 0
      @ 2023-10-11 22:17:57
      #include<bits/stdc++.h>
      using namespace std;
      int a[10],n;
      double k;
      void fj(int x){
      	int y=0;
      	while(x!=0){
      		y++;
      		a[y]=x%10;
      		x=x/10;
      	}
      	return;
      }
      int main(){
      	cin>>n;
      	fj(n);
      	k=a[2]/1.0/a[1];
      	cout<<fixed<<setprecision(1)<<k;
      	return 0;
      }jytej
      
      • -1
        @ 2022-11-29 11:03:08
        #include <iostream>
        #include <iomanip>
        using namespace std;
        
        int main(){
        	int n,g,s;
        	cin>>n;
        	cout<<fixed<<setprecision(1)<<(n/10)*1.0/(n%10);
        }
        
        • 1

        信息

        ID
        604
        时间
        1000ms
        内存
        64MiB
        难度
        6
        标签
        递交数
        155
        已通过
        43
        上传者