Бодолт илгээх | Бүх бодолтууд | Шилдэг бодолтууд | Жагсаалт руу буцах |
RGB7006 - Функц 2 |
y=4x2-3x+5
Input
x - нь Int төрлийн бүхэл тоо.
Output
y-гийн утга.
Example
Input:
-2
Output:
27
Нэмсэн: | Bataa |
Огноо: | 2011-01-17 |
Хугацааны хязгаарлалт: | 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
|
||||||||||||
2019-12-29 12:20:57
#include<bits/stdc++.h> using namespace std; int main(){ long long x,y; cin>>x; y=4*(x*x)-3*x+5; cout<<y<<endl; return 0; } |
||||||||||||
2019-11-29 08:15:47
#include <iostream> using namespace std; int main() { int x,y; cin>>x; y=4*x*x-3*x+5;; cout<<y; } |
||||||||||||
2019-11-12 05:11:05
aa chihshig |
||||||||||||
2019-10-26 06:21:55
#include <cstdio> int main(){ int x; scanf("%d",&x); int y; y=4*x*x-3*x+5; printf("%d",y); } SUPER |
||||||||||||
2019-10-11 08:44:50
hehehe |
||||||||||||
2019-10-01 06:30:41
lol |
||||||||||||
2019-09-09 06:42:05
ahahahahaha |
||||||||||||
2019-04-26 08:52:17
ague tuslare Last edit: 2019-04-26 08:52:34 |
||||||||||||
2019-03-27 16:00:49
mal bodlogo we |
||||||||||||
2019-03-25 03:11:23
#include <iostream> using namespace std; main() { int y, x; cin>>x; y=4*x*x-3*x+5; cout<<("%d", y); } |