answersLogoWhite

0


Best Answer

1,2,3,4,5,6,7,8,9,0,10,11,12,13,14,15

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the code for the following program 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 en castellano?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

HTML code has a limit of 10 webpages per site?

No! HTML is simply code. You can write 1 million pages of HTML code if you want. HTML is not a program. Its code. Now you may have a program that uses HTML code and that program has limitations. But not HTML itself.


Design of a binary up counter from 0-10 using a pic16f84?

Output the numbers from 0 to 10 to the port register, for onstance in PICBasic use the following code: [code] for PORTB = 0 to 10 next PORTB [/code]


Which of following establishes the overarching policy for the Critical Asset Risk Management Program (CARM) for the Air Force?

AFPD 10-24, Air Force Critical Infrastructure Program (CIP)


Which of the following establishes the overarching policy for the Critical Asset Risk Management Program CARM for the Air Force?

D. AFPD 10-24, Air Force Critical Infrastructure Program (CIP)


How many digits are there in UK phone number?

It depends. There are usually 9 or 10 significant digits after the "0" trunk code. All mobile phones have 10 significant digits following the "0" trunk code. Dialing from outside the UK, the "0" trunk code is replaced with the country code, "44".


How many digits are there in a uk phone number?

It depends. There are usually 9 or 10 significant digits after the "0" trunk code. All mobile phones have 10 significant digits following the "0" trunk code. Dialing from outside the UK, the "0" trunk code is replaced with the country code, "44".


When was Javier Sicilia born?

Manuel Castellanos López was born in 1949.


How you convert int to string in jsp?

The same way you would in a regular java program. int i = 10; String s = i + ""; after the above line of code the variable s will have "10" as a string value...


What is the procedure ICD-10-CM code for a unilateral total lung lavage following smoke inhalation?

J70.5 is the best answer I could find


How do you construct the C plus plus program that will accept 10 integers number code?

#include<iostream> #include<conio.h> #include<string> int main() { std::cout << "Enter your 10 digit code: "; size_t code=0; size_t len=0; while (len<10) { char c = (char) _getch(); if (c=='0' && !code) // leading zero not permitted! continue; if (c>='0' && c<='9') { ++len; std::cout << c; c -= '0'; code *= 10; code += c; } } std::cout << "\n\nYou entered: " << code << '\n' << std::endl; }


Where is telephone country code 20 area code 10?

Country code +20 is Egypt, and a number beginning with +20 10 is a Vodafone mobile. In 2011, mobile numbers in Egypt were changed. Numbers beginning with +20 10 changed to +20 100 +20 16 changed to +20 106 +20 19 changed to +20 109 +20 151 changed to +20 101 with 7 digits following the mobile code.


Is pseudocode a combination of programming language and machine code?

No. Pseudocode is not used to write complete programs; rather, it is an overview of what you want to achieve. For example, the following pseudocode is for a program to print a list of square roots: for i = 1 to 10 show i, i*i A specific programming language may not have a "show" command, and the structure of the "for" loop might be different; additional setup and cleanup commands may also be required in a real computer program; the purpose of this pseudoce is merely to explain, to a human, what you want to achieve. The real code, with more detail, will have to be added later.