• skip to content
Logo

User Tools

  • Register
  • Login

Site Tools

  • Recent changes
  • Media Manager
  • Sitemap
You are here: start » do

do

Search

You can find the results of your search below. If you didn't find what you were looking for, you can create or edit the page named after your query with the appropriate tool.

Results

Matching pagenames:

  • random_numbers (arduino)
  • usb_leonardo_and_due_only
  • dos.h (c)
  • dokuwiki (wiki)
  • bitwisecompoundor (ard…ators)
  • dowhile (arduino:…structures)
  • double (arduino:data_types)
  • random (arduino:r…dom_numbers)
  • randomseed (arduino…m_numbers)
  • mousekeyboard (ardui…ue_only)
  • window (c:conio.h)
  • do (c:control_structures)
  • double (c:datatypes)
  • long_double (c:datatypes)
  • delay (c:dos.h)
  • getdate (c:dos.h)
  • gettime (c:dos.h)
  • nosound (c:dos.h)
  • setdate (c:dos.h)
  • sleep (c:dos.h)
  • sound (c:dos.h)
  • edom (c:errno.h)
  • getcurrentwindow (c:gr…hics.h)
  • getwindowheight (c:graphics.h)
  • getwindowwidth (c:graphics.h)
  • initwindow (c:graphics.h)
  • setcurrentwindow (c:gr…hics.h)
  • do (c:keywords)
  • double (c:keywords)
  • stdout (c:keywords)
  • fdopen (c:stdio.h)
  • do (cpp:control_structures)
  • double (cpp:datatypes)
  • do (java:loops)
  • mysql_shutdown (c:mys…mysql.h)
  • random (java:lang:math)
  • nextdouble (java:util:scanner)
  • addobject (objecti…learray.h)
  • doublevalue (object…number.h)
  • initwithdouble (objec…umber.h)
wiki:syntax: 6 Hits
[[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there... pattern file]]. There are three exceptions which do not come from that pattern file: multiplication e... an use the following syntax: I think we should do it > No we shouldn't >> Well, I say we ... ld > Really? >> Yes! >>> Then lets do it! I think we should do it > No we shouldn't
java:loops:do: 6 Hits
====== do ===== <code java> do { command; } while (condition); </code> a do loop will run while a condition is false ===== example of do loop in java ===== <code java> package codereferececomjava; ... [] args) { int i=4; do { i++; } while(i==4); System.out.println("i is :" + i ); } } </code> === output of do === i is :5
arduino:control_structures:dowhile: 5 Hits
====== do - while ====== The **do** loop works in the same manner as the **while** loop, with the e... dition is tested at the end of the loop, so the **do** loop will ''always'' run at least once. <code arduino> do { // statement block } while (test condition); </code> ==== Example ==== <code arduino> do { delay(50); // wait for sensors to stabilize x = readSensors(); // check
lua:codea:stargenerator:main.lua: 4 Hits
on createstars() stars = {} for i = 1,175 do --rx = math.random(1,1200) -- ry=... table.insert(stars,s) end for i = 1,50 do --rx = math.random(1,1200) -- ry=... und(0, 0, 0, 255) for a,b in pairs(stars) do b:draw() end movestars() end function movestars() for b,s in pairs(stars) do s:move() end end </code>
c:control_structures:do: 4 Hits
iki library source code example reference}} ===== do ===== Syntax do instruction while ( cond... r Windows */ int main( void ) { int i; do printf("Hello World no %i\n",i); whil... eturn 0; } </code> output user@host~:# ./do Hello World no 0 Hello World no 1 Hel
arduino:control_structures:else: 3 Hits
ed. <code arduino>if (pinFiveInput < 500) { // do Thing A } else if (pinFiveInput >= 1000) { // do Thing B } else { // do Thing C } </code> Another way to express branching, mutually exclusive te
arduino:constants:progmem: 3 Hits
d that, in various versions of Arduino (having to do with GCC version), PROGMEM may work in one locati... ata from program memory back into SRAM, so we can do something useful with it. As mentioned above, it... to use. Floating point numbers in program memory do not appear to be supported. prog_char - a
cpp:control_structures: 3 Hits
continue]] |continue | | [[cpp:control_structures:do|do]] |do | | [[cpp:control_structures:goto|goto]]
objective-c:examples:uiwebview_using_local_resources: 3 Hits
(void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typi... them with the objects we just added to the view. Do not forget to connect the delegate of the UIWebVi... 2014-08-19_um_01.34.49.png}}\\ The last thing to do is add some resources.\\ Add an image. Mine is vm
c:graphics.h:getch: 3 Hits
n the winbgim implementation of BGI graphics. You do not need to include conio.h; just include graphic... ; outtextxy(20, 160, "Press X to exit."); do { c = (char) getch( ); if (c != 0) cout <... of getch example ===== no output of example at the moment do not hesitate and add it...
c:control_structures: 3 Hits
ult|default]] |default | | [[c:control_structures:do|do]] |do | | [[c:control_structures:else|else]] |
start: 3 Hits
or all the programming languages ​​out there\\ So do not hesitate to add some example code, adjust or ... i:syntax|formatting syntax]] before you start\\ do you miss your favorite language ? add it ;) ple... d for a real example ** **To Support us**\\ do simple things e.g. correct spelling and grammar,
arduino:control_structures:switchcase: 3 Hits
ode arduino> switch (var) { case 1: //do something when var equals 1 break; case 2: //do something when var equals 2 break; default: // if nothing else matches, do the default // default is optional } </code> ===== Syntax ===== <code arduino> sw
cpp:control_structures:do: 3 Hits
iki library source code example reference}} ===== do ===== Syntax do instruction while ( cond... amespace std; int main( void ) { int i; do cout << "Hello World no " << i << endl;
c:graphics.h:swapbuffers: 2 Hits
c:graphics.h:setfillstyle: 2 Hits
c:keywords: 2 Hits
c:graphics.h:delay: 2 Hits
c:graphics.h:initwindow: 2 Hits
c:graphics.h:settextstyle: 2 Hits
c:graphics.h:kbhit: 2 Hits
c:graphics.h:writeimagefile: 2 Hits
bash:examples:smbscan: 2 Hits
arduino:advanced_io:shiftout: 2 Hits
c:graphics.h:mousey: 2 Hits
arduino:variable_scope_and_qualifiers:variabledeclaration: 2 Hits
cpp: 2 Hits
arduino:data_types:array: 2 Hits
cpp:variables: 2 Hits
arduino:analog_io:analogwrite: 2 Hits
c:graphics.h:mousex: 2 Hits
bash:case: 2 Hits
c:graphics.h:readimagefile: 2 Hits
c:graphics.h:showerrorbox: 2 Hits
c:graphics.h:printimage: 2 Hits
c:graphics.h:registermousehandler: 2 Hits
java:loops:while: 1 Hits
c:graphics.h:setgraphbufsize: 1 Hits
c:graphics.h:setcurrentwindow: 1 Hits
java:io:printwriter: 1 Hits
java:loops:for: 1 Hits
objective-c:examples:indexpath_for_custom_cell: 1 Hits
arduino:math:map: 1 Hits
arduino:data_types:char: 1 Hits
arduino:time:delay: 1 Hits
c:graphics.h:setgraphmode: 1 Hits
cpp:editing_the_value_of_variables: 1 Hits
arduino:utilities:sizeof: 1 Hits
c:control_structures:switch: 1 Hits
c:graphics.h:setallpalette: 1 Hits
c:graphics.h:putpixel: 1 Hits
c:graphics.h:pieslice: 1 Hits
c:graphics.h:sector: 1 Hits
c:graphics.h:outtextxy: 1 Hits
c:graphics.h:outtext: 1 Hits
c:graphics.h:textheight: 1 Hits
c:graphics.h:rectangle: 1 Hits
c:graphics.h:setbkcolor: 1 Hits
c:graphics.h:cleardevice: 1 Hits
arduino:control_structures:while: 1 Hits
c:graphics.h:setactivepage: 1 Hits
c:graphics.h:getbkcolor: 1 Hits
c:graphics.h:drawpoly: 1 Hits
c:graphics.h:setaspectratio: 1 Hits
arduino:data_types:string: 1 Hits
c:conio.h:cputs: 1 Hits
c:graphics.h:setwritemode: 1 Hits
c:time.h:clock: 1 Hits
c:graphics.h:setvisualpage: 1 Hits
arduino:external_interrupts:attachinterrupt: 1 Hits
c:graphics.h:setviewport: 1 Hits
c:stdarg.h:va_copy: 1 Hits
objective-c:examples:fonts: 1 Hits
wiki:dokuwiki: 1 Hits
objective-c:control_structures:while: 1 Hits
cpp:control_structures:while: 1 Hits
c:graphics.h:getpixel: 1 Hits
c:conio.h:cprintf: 1 Hits
bash:examples:iisscan: 1 Hits
c:graphics.h:setusercharsize: 1 Hits
c:graphics.h:settextjustify: 1 Hits
arduino:control_structures:if: 1 Hits
arduino:control_structures:break: 1 Hits
c:stdio.h:fdopen: 1 Hits
arduino:time:millis: 1 Hits
c:graphics.h:setmousequeuestatus: 1 Hits
c:graphics.h:arc: 1 Hits
arduino:control_structures:continue: 1 Hits
arduino:data_types:stringobject: 1 Hits
arduino:boolean_operators:boolean: 1 Hits
c:graphics.h:setrgbpalette: 1 Hits
arduino:constants:integerconstants: 1 Hits
c:graphics.h:setpalette: 1 Hits
c:control_structures:while: 1 Hits
c:graphics.h:setlinestyle: 1 Hits
c:graphics.h:circle: 1 Hits
c:graphics.h:getmoderange: 1 Hits
c:graphics.h:getmodename: 1 Hits
c:graphics.h:getpalette: 1 Hits
c:graphics.h:getpalettesize: 1 Hits
c:graphics.h:getviewsettings: 1 Hits
c:graphics.h:gettextsettings: 1 Hits
c:graphics.h:getmaxy: 1 Hits
c:graphics.h:getmaxx: 1 Hits
c:graphics.h:getlinesettings: 1 Hits
c:graphics.h:getgraphmode: 1 Hits
c:graphics.h:getmaxcolor: 1 Hits
c:graphics.h:getmaxheight: 1 Hits
c:graphics.h:getmaxwidth: 1 Hits
c:graphics.h:getmaxmode: 1 Hits
c:graphics.h:getvisualpage: 1 Hits
c:graphics.h:getwindowheight: 1 Hits
c:graphics.h:installuserfont: 1 Hits
c:graphics.h:installuserdriver: 1 Hits
c:graphics.h:ismouseclick: 1 Hits
c:graphics.h:moverel: 1 Hits
c:graphics.h:linerel: 1 Hits
c:graphics.h:line: 1 Hits
c:graphics.h:initgraph: 1 Hits
c:graphics.h:imagesize: 1 Hits
c:graphics.h:gety: 1 Hits
c:graphics.h:getwindowwidth: 1 Hits
c:graphics.h:graphdefaults: 1 Hits
c:graphics.h:grapherrormsg: 1 Hits
c:graphics.h:graphresult: 1 Hits
c:graphics.h:getfillsettings: 1 Hits
c:graphics.h:getfillpattern: 1 Hits
c:graphics.h:restorecrtmode: 1 Hits
c:graphics.h:bar: 1 Hits
c:graphics.h:fillpoly: 1 Hits
c:graphics.h:getimage: 1 Hits
c:graphics.h:moveto: 1 Hits
c:graphics.h:getx: 1 Hits
c:graphics.h:setfillpattern: 1 Hits
c:graphics.h:getcolor: 1 Hits
c:graphics.h:lineto: 1 Hits
c:graphics.h:bar3d: 1 Hits
c:graphics.h:putimage: 1 Hits
c:graphics.h:setcolor: 1 Hits
c:graphics.h:getaspectration: 1 Hits
c:graphics.h:floodfill: 1 Hits
c:graphics.h:textwidth: 1 Hits
c:graphics.h:registerbgifont: 1 Hits
c:graphics.h:getarccoords: 1 Hits
c:graphics.h:getactivepage: 1 Hits
c:graphics.h:getcurrentwindow: 1 Hits
c:graphics.h:getdefaultpalette: 1 Hits
c:graphics.h:getdrivername: 1 Hits
c:graphics.h:getdisplaycolor: 1 Hits
c:graphics.h:fillellipse: 1 Hits
c:graphics.h:detectgraph: 1 Hits
c:graphics.h:clearmouseclick: 1 Hits
c:graphics.h:getmouseclick: 1 Hits
c:graphics.h:clearviewport: 1 Hits
c:graphics.h:closegraph: 1 Hits
c:graphics.h:registerbgidriver: 1 Hits
c:graphics.h:ellipse: 1 Hits

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War

Page Tools

  • Show pagesource
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 3.0 Unported
CC Attribution-Share Alike 3.0 Unported Driven by DokuWiki
Tweet this link
Impressum Datenschutz