yo simply go to options on your computer and click print. then a little screen will come up and you can select how big it is if you have a printer that has those options like Dell , Epson, Hp , Gateway , Microsoft , Acer , toshiba , or Asis.
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
Print quality is better in higher dots per inch (dpi) numbers due to the amount of smaller dots used when a page is printed. Therefore the print quality would be better in a 600 x 600 dpi 2 than a 1200 x 1200 single bit.
num%=9 CLS PRINT "The square of: "; num%; " = "; num%*num% END
In QBASIC, percentages can be calculated by first determining the total value or quantity that the percentage represents. Then, you can multiply this total value by the percentage you want to find, and finally divide the result by 100. This will give you the percentage of the total value. For example, to find 20% of 100 in QBASIC, you would calculate (100 * 20) / 100 = 20.
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
1 PRINT "Kindly enter your next number, Master, or 'x' to end and total them up." 2 INPUT a$: IF a$ = "x" or a$ = "X" then GOTO 10 3 K = VAL(a$) 4 If K<0 then neg=neg+1: PRINT: GOTO 1 5 If K>0 then pos=pos+1: PRINT: GOTO 1 6 If K=0 then Z=z+1: PRINT: GOTO 1 10 PRINT: PRINT "Thank you, Master. I cannot express the joy that this exercise has brought me. Here are your results: " 11 PRINT: PRINT "The number of positive numbers you entered was "; pos; "." 12 PRINT: PRINT "The number of negative numbers you entered was "; neg; "." 13 PRINT: PRINT "The number of zeros you entered was "; Z; "." 15 PRINT: PRINT: PRINT "Would you like to play again, Master ?" 16 PRINT "Kindly touch 'x' if no, or any other key if yes. I can hardly wait." 17 Input a$: IF a$ <> "X" and a$ <> "x" then GOTO 20 18 PRINT: PRINT "It has been my pleasure to cavort with you today, Master." 19 PRINT "Y'all come back now, y'hear !" : END 20 PRINT: CLS: PRINT "Oh GOODY! I love this game!" 21 pos=0: neg=0: Z=0 22 GOTO 1
print table of 2 in vb