مطوّر البرامج:
السعر: $2.99
لتصنيفات: 0 
المراجعات: 0 أكتب مراجعة
قوائم: 0 + 1
النقاط: 1 + 5 (2.6) ¡
النقاط +1

الوصف

BASIC - Programming Language
BASIC: THE FEELING OF THE GOOD OLD TIMES !
10 INPUT A
20 B = SIN(A)
30 PRINT "ANSWER: ", B
40 END

BASIC USER'S GUIDE:

• PRINT

10 PRINT "HELLO WORLD !"
20 END

• INPUT

10 INPUT “A=”, A
20 PRINT A
30 END

• IF...THEN...

Number Comparison:

10 INPUT A
20 IF A>90 THEN B=“A”
30 PRINT B
40 END

Conditional Operators:
> greater than
< less than
>= greater than or equal to
=> equal to or greater than
<= less than or equal to
=< equal to or less than
= equal to
== equal to
<> not equal to
!= not equal to

THEN can be followed by GOTO, GOSUB, INPUT, PRINT.

String Comparison:

10 INPUT A
20 IF A=“TOM” THEN PRINT “BOY”
30 END

Conditional Operators:

= is
== is
<> is not
!= is not

• FOR...NEXT...

10 FOR I=1 TO 4 STEP 2
20 PRINT “HELLO”, I
30 NEXT I
40 END

STEP specifies the counter increment for each loop. If STEP doesn’t exit, the default increment is 1.

FOR...NEXT... loop can be nested.

10 FOR I=1 TO 5
20 FOR J=1 TO 4
30 PRINT I, J
40 NEXT J
50 NEXT I
60 END

• GOTO

10 ...
20 ...
30 ...
40 GOTO 10
50 ...

• GOSUB

10 PRINT “H”
20 GOSUB 100
30 PRINT “L”
40 END
100 PRINT “A”
110 RETURN

• SOUND

10 SOUND C, M, 0.5

The line 10 plays Middle C piano note for 0.5 seconds.

Note: C, C#, D, D#, E, F, F#, G, G#, A, A#, B
Pitch Range: L (low), M (middle), H (high)
Lasting Time: specifies how long a note lasts.

C, D, E, F, G, A, B can also be labeled as 1, 2, 3, 4, 5, 6, 7. (C# as 1#).

• TEXT

10 TEXT “HELLO”, x, y, size

(x,y): position of the string “HELLO”.

• CIRCLE

10 CIRCLE x, y, radius

(x,y): the center of the circle.

• RECTANGLE

10 RECT x, y, width, height

(x,y): top-left point of the rectangle.

• LINE

10 LINE x1, y1, x2, y2

(x1,y1): the starting point of the line.
(x2,y2): the ending point of the line.

• POINT

10 POINT x, y

(x,y): the position of the point.

• CLR: clear the edit window.
• CLS: clear the graph window.

• DELAY

10 DELAY 0.5

0.5:lasting time in seconds

This function is used to suspend execution of a program for a particular time.

• CURVE

10 CURVE x, y, radius, 0, PI

0: starting angle
PI: ending angle

The curve draws clockwise with center (x,y).

• Mathematical Functions:

SIN(X), COS(X), TAN(X), COT(X),
ASIN(X), ACOS(X), ATAN(X),
SINH(X), COSH(X), TANH(X),
ASINH(X), ACOSH(X), ATANH(X).

SQR(X): square root of x.
ABS(X): absolute value of x.
FCT(X): x factorial.
LOG(X): natural logarithm of x.
LOG10(X): base-10 logarithm of x.
LOG2(X) :base-2 logarithm of x.
EXP(X): base-e exponential of x.
ERF(X): the error function of x.
ERFC(X): the complementary error function of x.
ROUND(X) :integral nearest to x.
CEIL(X): the smallest integral that is not less than x.
FLOOR(X): the largest integral that is not greater than x.
TGAMMA(X): the gamma function of x.
LGAMMA(X): the natural logarithm of the absolute value of the gamma function of x.

• Reserved Variables:

INKEY : once a key is pressed, the value of INKEY changes.
RND : a random number.
PI : π

• Some Tips:

1. Undo & Redo typing on iPhone with a shake.
2. Copy an Emoji or some character from other places (like Notes), then paste them on the edit window.
3. Exponentiation is expressed as X^Y.
مزيد ↓

لقطات

#1. BASIC - Programming Language (iOS) بواسطة: JUN JIANG
#2. BASIC - Programming Language (iOS) بواسطة: JUN JIANG
#3. BASIC - Programming Language (iOS) بواسطة: JUN JIANG
#4. BASIC - Programming Language (iOS) بواسطة: JUN JIANG
#5. BASIC - Programming Language (iOS) بواسطة: JUN JIANG

الميزات الجديدة

  • الإصدار: 1.5
  • تم التحديث:
  • Compatible with more iOS devices.

السعر

  • اليوم: $2.99
  • الحد الأدنى: $1.99
  • الحد الأقصى: $3.99
 
تتبّع الأسعار

مطوّر البرامج

  • 军 江
  • المنصات: iOS تطبيقات (78)
  • قوائم: 0 + 1
  • النقاط: 5 + 41 ¡
  • لتصنيفات: 0
  • المراجعات: 0
  • تخفيضات: 0
  • أشرطة فيديو: 0
  • RSS: اشتراك

النقاط

  • Luciole
    • 2,115 Luciole

لتصنيفات

غير معثور عليه ☹️

قوائم

غير معثور عليه ☹️

المراجعات

كن الأول لمراجعة هذا المنتج 🌟

معلومات إضافية

BASIC - Programming LanguageBASIC - Programming Language عنوان URL مختصر: تم النسخ!
  • مشاركة 👍
  • App Store

قد يعجبك ايضا

    • BASIC Programming Compiler
    • iOS تطبيقات: تعليم  بواسطة: Ketan Appa
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 7 (3.1)   الإصدار: 1.9.2   Write BASIC code directly on your iPhone, iPad and iPod Touch! This app is ideal for learning and testing code snippets! BASIC (Beginner's All-purpose Symbolic Instruction Code) is a ...
        ⥯ 
    • Language Dashboard
    • iOS تطبيقات: تعليم  بواسطة: Language Dashboard
    • مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 1 + 2 (5.0)   الإصدار: 2.1.1   Language Dashboard was designed for language learners studying Arabic, Chinese, French, German, Italian, Japanese, Korean, Russian, and Spanish, and is equally valuable for speakers of
        ⥯ 
    • Language Zen - Spanish
    • iOS تطبيقات: تعليم  بواسطة: Language Zen Inc
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 6 (4.8)   الإصدار: 3.2.1   Language Zen is like a personal tutor with a perfect memory. It is proven to teach Spanish 2.2X more effectively than Rosetta Stone and can let you learn an entire semester of college ...
        ⥯ 
    • bashi - programming language
    • iOS تطبيقات: تعليم  بواسطة: 小文 黄
    • مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 23 (4.3)   الإصدار: 2.1   This is an ios bash4.3 app,you can learn,run,share bash4.3 script. Features : Autocomplate. Auto Indent. Code color. In(the built-in browser or the txt editor),Select the text to run. ...
        ⥯ 
    • Language Game - LangLandia
    • iOS تطبيقات: تعليم  بواسطة: Language Unlimited LLC
    • * مجاني   
    • قوائم: 1 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 2 + 360 (4.7)   الإصدار: 7.8.4   Learn French, Spanish, Russian, Japanese, German, Italian, Portuguese and Thai! Get addicted to learning Spanish and more with the most fun way to learn a language! Instead of wasting ...
        ⥯ 
    • Language Curry - Speak Indian
    • iOS تطبيقات: تعليم  بواسطة: Language Curry
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 266 (4.4)   الإصدار: 6.5.1   Namaste! Language enthusiasts across the world are connecting to India through, Language Curry the one-stop shop for learning Indian regional languages (Sanskrit, Hindi, Kannada, ...
        ⥯ 
    • Learn C++ Programming Language
    • iOS تطبيقات: تعليم  بواسطة: Ghumman Tech LLC
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 0   الإصدار: 3.7   This app is a great resource to learn about C++ Programming Language. The app is engineered to make users perfect understanding common C++ Programming Language questions by studying ...
        ⥯ 
    • Learn Basic Arabic Language A1
    • iOS تطبيقات: تعليم  بواسطة: Mobiteach.ltd
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 23 (4.6)   الإصدار: 6.1.5   Arabic for Beginners. That s your fast start! Would you like to learn Arabic easily and quickly? Would you like to study Arabic from the beginning? Are you looking for a good ...
        ⥯ 
    • Swedish Language Gym
    • iOS تطبيقات: تعليم  بواسطة: Language Lock In
    • مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 0   الإصدار: 3.18.11   For Swedish Language Gym members to reserve classes, sign up for events, and general account management like updating their headshots and card on file.
        ⥯ 
    • Language Generator
    • iOS تطبيقات: تعليم  بواسطة: ZSOLT DEAK
    • مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 1 + 0   الإصدار: 1.1   Language Creator: Your Personal Linguistic Universe Ever dreamed of creating your own language like Tolkien's Elvish or Star Trek's Klingon? Now you can! Design unique languages with: ...
        ⥯ 
    • Language Byte
    • iOS تطبيقات: تعليم  بواسطة: Kai Wen Digital
    • $4.99   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 0   الإصدار: 1.0   Language Byte makes learning Spanish effortless and fun, right from your wrist! Perfect for busy learners who want to expand their vocabulary one bite-sized piece at a time. Key ...
        ⥯ 
    • Language Score-Level Identify
    • iOS تطبيقات: تعليم  بواسطة: Ahmad Al Hariri
    • $4.99   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 0 + 0   الإصدار: 1.0   Language Score is an application that provides quizzes to identify your level score in both English and German. English Language Quiz Levels Test your English grammar proficiency with ...
        ⥯ 
    • Programming Hub: Learn Coding
    • iOS تطبيقات: تعليم  بواسطة: Rightsol Private Limited
    • * مجاني   
    • قوائم: 0 + 1   لتصنيفات: 0   المراجعات: 0
    • النقاط: 1 + 9,481 (4.8)   الإصدار: 3.4.24   Build your programming skills in a fun way. Learn to code with a game-like learning experience. Explore interactive coding lessons with a one-stop code learning app. Learn to code with
        ⥯ 
    • Programming Hero: Coding Fun
    • iOS تطبيقات: تعليم  بواسطة: Codinism Inc
    • * مجاني   
    • قوائم: 0 + 0   لتصنيفات: 0   المراجعات: 0
    • النقاط: 2 + 649 (4.8)   الإصدار: 0.3.1   -- Here, programming just got fun -- BUILD A GAME WHILE LEARNING TO CODE: Quick Action: Apply programming concepts immediately after learning. Practice Anywhere: Practice coding ...
        ⥯ 

قد يعجبك ايضا

عوامل تشغيل البحث التي يمكن استخدامها مع AppAgg
إضافة إلى AppAgg
AppAgg
ابدأ بإنشاء حساب - انه مجاني.
تسجيل
تسجيل الدخول