Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7112 - 10-аас их |
Өгөгдсөн тоо 10-аас их бол YES үгүй бол NO гэж хэвлэ.
Input
Int төрлийн 1 тоо өгөгдөнө.
Output
YES эсвэл NO гэж хэвлэгдэнэ.
Example
Input: 11 Output: YES
Нэмсэн: | Bataa |
Огноо: | 2011-05-31 |
Хугацааны хязгаарлалт: | 0.208s |
Эх кодын хэмжээний хязгаарлалт: | 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
|
|||||||
2022-12-02 06:16:12
#include <iostream> using namespace std; int main() { int a; cin>>a; if(a>10) cout<<"YES"; else cout<<"NO"; return 0; } |
|||||||
2022-11-14 09:52:54
a=int(input()) if(a>10): print("YES") else: print("NO") python |
|||||||
2022-11-10 02:09:30
You should call me, "Kawaii" Play it like a hentaii Moshi moshi, Oni Chi (This track is made by Danny) Мин кечкенә песи кебек, әйе, мяу-мяу (мяу) Урамга карам әйтәм, "Яңгыр яу-яу" (uwu) Монда эссе ай-һай (ай-һай) Ал күлмәкне салам шәрә калам, bye, bye Mami going chop-chop Rainy day, drop top Got my Louis flip-flops With my Fendi crop top Яңгыр ява, тама тамчы Чылана минем Versace She is cutie, she's almighty You will never, ever catch her Do you get it? You should call me, "Kawaii" Play it like a hentaii Moshi moshi, Oni Chi Yuce, Noshi Kamaji Chibi Chi, senpai Kawaii Yakudzi Dekkai and I yee Kimoi and I yeet You should call me, "Kawaii" Play it like a hentaii Moshi moshi, Oni Chi Yuce, Noshi Kamaji Chibi Chi, senpai Kawaii Yakudzi Dekkai and I yee Kimoi and I yeet You arе wasting all my time That's your waifu, she's alright? Waifu don't know how to woah You should teach her do it right I don't want you by my side You are wasting all my time Yeah, whatever, nevermind (yeah, whatever, nevermind) You are wasting all my time That's your waifu, she's alright? Waifu don't know how to woah You should teach her do it right I don't want you by my side You are wasting all my time You are wasting all my time You are wasting all my time You should call me, "Kawaii" Play it like a hentaii Moshi moshi, Oni Chi Yuce, Noshi Kamaji Chibi Chi, senpai Kawaii Yakudzi Dekkai and I yee Kimoi and I yeet You should call me, "Kawaii" Play it like a hentaii Moshi moshi, Oni Chi Yuce, Noshi Kamaji Chibi Chi, senpai Kawaii Yakudzi Dekkai and I yee Kimoi and I yeet |
|||||||
2022-11-07 08:23:43
#include <iostream> using namespace std; int main() { int a,b,c,s=0,d; cin>>a; if (a>10) {cout<<"YES";} else {cout<<"NO";} } GOOD ANSWER |
|||||||
2022-10-18 18:17:33
#include <stdio.h> int a; main() { scanf("%d",&a); if(a<10) printf("NO"); else printf("YES"); return 0; } |
|||||||
2022-10-15 15:26:09
ENIIG ASHIGLA MERGEN #include <iostream> using namespace std; main(){ int a,b,c,d,h; cin>>a; if(a>10) cout<<"YES"; else cout<<"NO"; } |
|||||||
2022-05-18 08:36:32
#include<stdio.h> int main() { int a; scanf("%d",&a); if (a>10) { printf("YES"); } else { printf("NO"); } return 0; } Last edit: 2022-05-18 08:39:42 |
|||||||
2022-03-31 09:35:38
#include <iostream> using namespace std; int main () { int a; cin >> a; if (a>10) printf("YES"); else if (a<10) printf("NO"); return 0; } |
|||||||
2022-03-17 19:11:45
bolkueeeen |
|||||||
2022-01-07 05:12:36
eniiig hiij chadahgui bol uil khatnaagaas c++ #include <iostream> using namespace std; int main() { int a; cin >> a; if (a <10){ cout << "NO"; } else { cout << "YES"; } return 0; } |