Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7103 - 3 тооны их |
Өгөгдсөн 3 тооны ихийг ол.
Input
Нэг мөрөнд Int төрлийн 3 тоо зайгаар тусгаарлагдан өгөгдөнө.
Output
Их тоо.
Example
Input: 1 3 2 Output: 3
Нэмсэн: | Bataa |
Огноо: | 2011-05-23 |
Хугацааны хязгаарлалт: | 1s |
Эх кодын хэмжээний хязгаарлалт: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Програмчлалын хэлүүд: | ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE |
hide comments
|
||||||||||||||
2024-03-01 06:02:18
a aa aa aa a a a a a a a a a a a a a a aa a a a aa a a a a a a a a a |
||||||||||||||
2024-02-04 07:53:37
haha |
||||||||||||||
2024-01-26 05:25:32
#python (3.9.5) the_string = input() a, b, c = the_string.split() a=int(a) b=int(b) c=int(c) if a>b and a>c: print(a) elif b>c and b>a: print(b) else: print (c) |
||||||||||||||
2024-01-22 14:24:34
aav nar uheese pisda |
||||||||||||||
2024-01-08 05:24:09
#include <bits/stdc++.h> int a,b,c,m; using namespace std; int main() { scanf("%d%d%d",&a,&b,&c); m=a; if (m<b) m=b; if (m<c) m=c; //if(a>b && b>c) printf("%d",a); //if(a<b && b>c) printf("%d",b); //if(a<b && b<c) printf("%d",c); printf("%d",m); return 0; } |
||||||||||||||
2023-12-28 14:14:08
hudlaa hulaal |
||||||||||||||
2023-12-17 17:49:02
bot |
||||||||||||||
2023-12-17 17:48:23
#include <iostream> using namespace std; int main() { int a,b; cin >>a>>b; if(a<b) cout<<a; else cout<<b; } |
||||||||||||||
2023-12-07 05:40:51
#include<stdio.h> main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if ( a > b & a > c ){; printf("%d",a); } if ( b > a & b > c ){; printf("%d",b); } if ( c > a & c > b ){; printf("%d",c); } return 0; } bayrlaj yvarai ermiin |
||||||||||||||
2023-11-20 06:23:31
#include<bits/stdc++.h> using namespace std; int main(){ int a, b, c; cin>>a>>b>>c; if(a>b&&a>c){ cout<<a; } if(b>a&&b>c){ cout<<b; } if(c>a&&c>b){ cout<<c; } } |