You seem to be unaware of the fact that you could have obtained the answer much more easily and quickly by using the calculator that comes as part of your computer.The answer is 2^17 = 131072.
213 = 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 = 8192
4080 = 2 x 2040 = 2 x 2 x 1020 = 2 x 2 x 2 x 510 = 2 x 2 x 2 x 2 x 255 = 2 x 2 x 2 x 2 x 3 x 85 = 2 x 2 x 2 x 2 x 3 x 5 x 17, so numbers are 3 x 5, 2 x 2 x 2 x 2 and 17, ie 15 x 16 x 17 = 4080
2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 = 512
96 = 2 x 2 x 2 x 2 x 2 x 3 48 = 2 x 2 x 2 x 2 x 3 80 = 2 x 2 x 2 x 2 x 5 the answer is 16
In BASIC: 10 INPUT X: IF X = 999 THEN STOP ELSE PRINT X; 20 IF X/2 = INT(X/2) THEN PRINT "EVEN" ELSE PRINT "ODD" 30 GOTO 10
Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end
X The filenames of the documents waiting to print X The current status of print jobs X The names of senders of current print jobs
num%=9 CLS PRINT "The square of: "; num%; " = "; num%*num% END
this is nested if statement cls input"enter percent age of marks:" ,x if x>=50 and x>=100 then print"first division" elseif x>=50 and x< 60 then print"second division" elseif x>=33 and x<50 then print"third division" else print"fail" endif
I interpreted your question as this: What is used in Python for adding a blank line to the output? If you are looking for this, a simple print statement will do: print #in python 2.x or print() #in python 3.x If that wasn't what you were looking for, change the question to be more clear.
start input x input y x + y output z End
class a { int x=2; a() { x=0; } void main() { a obj=new a(); System.out.print(obj.a); } } the above program will print the value of x as "0"
x as int = 0 while x < 50 x = x + 1 print x endwhile
print table of 2 in vb
====== FOR tablesNo%=1 TO 12 CLS PRINT "PROGRAM: "; tablesNo%; "X Tables:-" PRINT FOR timesNo%=1 TO 12 PRINT timesNo%; " X "; tablesNo%; " = "; timesNo%*tablesNo% NEXT PRINT PRINT "Press [SPACEBAR] key to continue..." SLEEP NEXT END
void print_evens (size_t n) {for (size_t x=0; x<=n; x+=2) { std::cout << x << std::endl; } }