Plans are basic ideas about your software problem and a software solution. You always start by making plans; mostly on paper or in a (pre) prototype or in a rapid developed prototype. There are a lot of problems and there are a lot of possibilities in solving these software problems. But mostly there are limited types of xxxx. There are 25, 30 until 40 basic solutions in programming your product. Here you see about 25 of them: a, b, c until z.
A solution in programming is:
var price = 10.0;
A solution in programming is:
extra = 2.0 + 0.2
A solution in programming is:
waarde = 3; prijs = 6; hulp = waarde waarde = prijs; prijs = hulp
A solution in programming is:
var mess = "Output: ";
a = 'true'; if ( a = true ) {toeslag = 2.0 + 0.6};or
a = 'true'; if ( a ) {toeslag = 2.0 + 0.6};or
btw = 17.5; if ( btw>15 ) {toeslag = 2.0 + 0.6};
A solution in programming is:
window.document.writeln("De waarde is: ")or
window.document.writeln("Output: ", getal, a)
xxxx
if ( (invoer<0) || (invoer>150) ) { window.alert('Foute leeftijd') }
A solution in programming is:
if ( c == 0 ) { window.alert('Delen door 0') } a= b / c;
A solution in programming is:
if ( (invoer<0) || (invoer>150) ) { exit() }
A solution in programming is:
xxxx
Reading a file and presenting their digital content on a screen is a very important technique.
xxxx
A solution in programming is:
for ( j=5; j>10; j++ ) y = y*j;or
for ( j = n-1; j > 1; j-- ) y = y*j;
A solution in programming is: xxxx
A solution in programming is:
i = 3 while(i>4) { j = j + 1; }
Voorbeeld:
i = 3 { j = j + 1; } while(i>4)
A solution in programming is:
for (i=0; i<10; i++) { j = j + 1; if (j== 13) { exit() } }
A solution in programming is:
function fac(n) { var y if ( (n==0) || (n==1) ) return 1 else { y = (n*fac(n-1)); return y } }
A solution in programming is:
if (temp>100) { tekst='Koken'}
A solution in programming is:
if ( direction == 'bakboord' ) { naar = 'Links'; } else { naar = 'Rechts'; }
A solution in programming is:
if (hoogte>200) {soort ='reus';} else { if (hoogte<100) {soort ="klein duimpje";} else {soort = 'normaal';} }
A solution in programming is:
getal = Gmin + (Gmax-Gmin) * Random();
A solution in programming is:
function input() { return (window.prompt("Input", ' ')) } antwoord = input();
A solution in programming is:
function invoer(tekst) { return (window.prompt("tekst", ' ')) } antwoord = invoer('Geef uw leeftijd');
A solution in programming is:
xxxx
A solution in programming is:
xxxx
A solution in programming is:
xxxx
Enschede, nov. 2000; updated: jan 29, 2003