1702
-
cyrus #96 akkor megkeresteted a bluetooth eszközzel a telefont (párosítod)
jobb gombbal katt a játékra amit leszedtél, (ha zip akkor természetesencsomagold ki) ott amenüben pedig küldés--->bluetooth eszköz
ennyi. -
#95 gondolom nem csak simán rá kell másolni a memóriára, hanem kell hozzá valamilyen progi... nem tudom milyen... -
#94 bluetoothot használok
-
#93 pl.: az itt: http://clubse.uw.hu/ lévő játékokat hogyan?
thx! -
cyrus #92 . jad, .jar
progi attól függ hogy adatkábelt vagy bluetoothot használsz -
#91 Hi! Az lenne a kérdésem, hogy milyen kiterjesztésű játékokat lehet erre a telefonra rátölteni PC segítségével, és melyik progival? -
#90 az fma honlapja
egy magyar SE-s oldal -
astala #89 na jó de holtalálom ezt a fma progit? -
#88 fma elvileg jó XP hez.
magyar nyelvűt ne várjál. nincs. -
astala #87 hello, nem tud valaki egy normális manager programot, amivel normálisan kommunikál a telefon? ( K 700-i) Lehetőleg magyar nyelvűt. -
Peugeot #86 hello ezt érdemes megnézni hamarosan kész!TelÓ -
Gylovag #85 A tárgyalás profilban nem kellene hangnak lennie, feltéve ha nem vetted le a néma üzemmódot abban a profilban.
-
#84 Win98:
A mindenféle retyerutyi programot leszedtem, gyári progikat eltávolítottam, újraraktam az infravörös illesztőt, és lám, a win alap beépített cuccával tudok rá fájlokat küldeni, telről indítva pedig fogadni azokat.
-
The Fugitive #83 Hellósztok!!
ha megnézed a mobilod tetejét, és mondjuk épp zenét hallgatsz, zölden világít a ki/be kapcsoló gomb. ha merül az akksi, elkezd pirosan világítani, amikor pedig már kell neki a töltő, elkezd villogni is!
pacsi -
#82 - win98 hoz infrás szoftvert vki plz.
SE hivatalos nem települ fel ( op rendszer verizó.. :(
FMA elinditáskor hiba.. -
#81 mindenkinek van, bizonyos szoft.verzió fölött, cak néhány nagyokos azt hiszi,... (-)
de a piros led nem villog mindig,szal ezert nem ertem. pl. most nem mutat semmit. -
#80 amugy ha tárgyalásra rakom nekem akkor is van exponáláási hang -
#79 Amikor megvettem a k700-at ez történt velem:
bedugtam este tölteni, világitott is megállás nélkül, nemteccet nekem, de gondoltam csak kell neki világitani(fórumba azt monták hogy álliccsam át a világitást automatikusra) vártam hogy leteljen a 15 óra(formázás) és kihuztam a töltöböl, de nemtörtént semmi, ugyanugy irta hogy töltés, nemreagált semmire, nemlehetett bekapcslni.. elvittem szervizbe, és 2 hetet kelett várni hogy aztmondják pesten hogy "Igen rossz a telefon, csere" és kicserélték.
Essenmáhó:) állisd át a világitást automatikusra! -
#78 talán világít a fenti led, viszont az biztos hogy néha ( talán lemerülés előtt ) villog a piros.. -
Jinchuu #77 Feltöltés közben nektek is egyfolytában világít a készülék vagy csak az enyém ilyen "speckó"? -
#76 Ennyire gyökér e vagy??? -
Gylovag #75 A fotózás hangját egy módon tudod kiütni. Válaszd a "Tárgyalás" profilt. Akkor kussol a telefon. Ennyi és nem több. -
#74 exponálási hang lehalkítása:
mivel az újabb firmwarekben ugye nem lehet kikapcsolni a hangot ( nagyon trükkös néma üzemmóddal sem.. ).
fel kell hívni egy ingyenes számot, és telefonálás közben kell fényképezni. Pl. felhívtam a 1270 -et, a női hang szépen elkezdte mondani adolgokat, és csak beszédhangerővel nyom be vmi kattanás félét, szóval kifelé nem lehet hallani. :D -
cyrus #73 nemnyerős...
plot(kezdőpont,végpont,lépték,FUNCTION)
lépték csak opcionális, function helyére nemtom mi kell.... próbáltam már számot, függvényképéletet, nevet, mindent -
#72 plot(
kezdőpont gondolom 0 vagy 1 ,
végpont.. képernyő felbontás ?=170 ,
funkció neve.. ehh ?? f(x) )
ez a leírás elég szegényes.. -
cyrus #71 de a plot().ban nem tudom mi kell a zárójel helyére, az a baj.. és igy reklamál.... :( -
#70 ha f(x)=... alakban adod meg? és utána a plot() ot hívod? -
cyrus #69 y=(x^2)/1.5-öt megoldja, de nem tudom kirajzoltatni... :( -
cyrus #68 egyelőre nem tudok vele egy függvényt rajzoltatni :( -
#67 Az jó jel, hogy programozható, így legalább van esélyrá, hogy numerikus módszerrel integrálást lehessen rá írni. -
cyrus #66 * Write formula using normal infix notation, for example (x^2 + y^2)/1.5. To execute statement use Evaluate command.
* Use variable to write generic formulas, by changing values assigned to the variables you wil be able to repeat calculation for all input data with minimal typing. Define your own functions which also can speedup your work and reduce probability of making an error.
* It is possible to write small functional programs using conditional ?: operator. For example sum of arithmetic progression can be calculated by the following function
sum(x)=x>0?x+sum(x-1):0
* Calculator has only < and > comparison operators (because comparing floating point number for equality is any case bad idea). But it is also to check that value belongs to specified range using min<x>max operator.
* All statement you have entered and stored in database. You can select proper statement using List command. Statements are marked with three different icons: ? (yellow) - statement was not yet evaluated, V (green) - statement was normally compiled and ! (red) - statement was not compiled due to some errors. It is possible to insert reference to the users function using Insert command. To compile and execute statement use Edit and then Evaluate command.
* Help command can be used to list all operators and functions provided by the calculator. You can also insert in edit buffer template of operator or function using Insert command.
* To draw graph of user defined function with one argument, use plot function with three or four parameters: plot(from,till,step,function) or plot(from,till,function). In last case step is choosen automatically according to screen resolution.
COMANDI di BASE
Assignment x=1
Assign new value to variable. After evaluation of this expression, it is possible to refer to this variable from other expressions.
Function definition f(x)=x*x
Evaluation of this expression defines function which can be used in other expressions and which graph can be plotted using plot() function
Conditional operator c?x:y
If condition left to '?' sign is true, then result of conditional expression is value of expression right to '?' sign, otherwise - result of conditional expression is value of expression after ':' sign. Example of function definition using conditional operator - calculation of Fibonacci numbers: fib(x)=x<2?1:fib(x-1)+fib(x-2)
Greater x>y
The result of expression is true if value of left operand is greater than value of right operand
Less x<y
The result of expression is true if value of left operand is less than value of right operand
Between 1<x<5
The result of expression is true if value of second operand is between values of first and third operands.
Sequence x=1,y=2
Sequence of expressions. The expressions are calculated in left-to-right order and result is the value of last expression. Using expression sequences you can write the simplest programs.
Addition x+y
Sum of two operands
Subtraction x-y
Difference of two operands
Multiplication x*y
Multiplication of two operands
Division x/y
Dividing value of first operand by value of second operand
Power x^y
Raise value of the first operand to a power determined by value of second operand
Integer part [x]
Integer part of number
Fraction part {x}
fraction part of number
Absolute value |x|
Absolute value
Expression in parentheses (x)
Expression in parentheses
Sine sin(x)
Sine function (radian)
Cosine cos(x)
Cosine function (radian)
Tangent tan(x)
Tangent function (radian)
Arcsine asin(x)
Arcsine function (radian)
Arccosine acos(x)
Arccosine function (radian)
Arctangent atan(x)
Arctangent function (radian)
Exponent exp(x)
Exponent
Logarithm log(x)
Natural logarithm
Ceil ceil(x)
Round to the minimal integer number greater or equal than specified value
Floor floor(x)
Round to the maximal integer number less or equal than specified value
Square root sqr(x)
Square root
Plot graphic plot(from,till,func)
Plot graphic of the function. First and second parameters specifies start and end point. Then it is possible to specify optional step value (if step is not specified, than it is chosen automatically based on screen resolution). And last parameter specifies name of plotted functions
[info] -
cyrus #65 nemtudom, most tesztelem. -
#64 és működik?
integrálni tud a progi? -
cyrus #63 nekem is elküldte a srác :D -
#62 tényleg? :
"
Ecco a voi... completa di guida!
Abbiate la bontà di redistribuire a chi ne farà richiesta in seguito
grazie!
CAlc.zip
Filenév: CAlc.zip
Típus: application/x-zip-compressed
Méret: 50125 byte"
ideírás után sikerült regelnem, és most megkaptam emailban :)
ha kell felteszem vhova...
-
cyrus #61 egyébként, csakneked angolul :D -
cyrus #60 ehhez nem kell nyelvtudás... kis ésszel ki lehet következtetni hogy a srác elküldi emailben annak aki kéri.
regelned kell a lapra hogy kérd. -
#59 fhu, olaszul nemtudok:D -
#58 ja, bocsi a név miatt, elirtam. -
#57 ha ezen eligazodtok ( olasz ), akkor segítsetek már!!! Függvény rajzoló, számológép progi k700 ra!!!