2 solutions

  • 4
    @ 2025-8-18 15:16:32
    #include<bits/stdc++.h>
    using namespace std;
    double a,b,c;
    int main(){
    	cin>>a>>b>>c;
    	double maxn=max({a,b,c});
    	cout<<maxn;
    	
    	return 0;
    }
    
    • 0
      @ 2026-2-4 11:56:42

      #include<bits/stdc++.h> using namespace std;

      int main() { double a,b,c; cin>>a>>b>>c; double maxn=max({a,b,c}); cout<<maxn;

      return 0;
      

      }

      • 1

      Information

      ID
      14
      Time
      1000ms
      Memory
      256MiB
      Difficulty
      1
      Tags
      (None)
      # Submissions
      279
      Accepted
      104
      Uploaded By