answersLogoWhite

0

// While this doesn't prompt the user for input, it does reverse the values' contents. $intA = '10';

$intB = '20';

$tmp = $intA;

$intB = $intA;

$intA = $tmp;

print $intA; // 20

print $intB; // 10 // An even quicker way is...

list($b,$a) = array($a,$b);

User Avatar

Wiki User

18y ago

What else can I help you with?

Related Questions

Write a program with a loop that lets the user enter a series of integers the user should enter -99 to signal the end of the series after the program should display the largest and smallest.?

#include<iostream.h> #include<conio.h> main() { int i,j; i=0; j=0; for(i=1;i<=5;i++) { if(i>j){ cout<"the value of i is="<<i; } else { cout<<"the value of j is="<<j; } } getch(); }


Write a program using recursion which should take two values and display 1st value raised to the power of second value?

Write a program using recursion which should take two values and display 1st value raised to the power of second value.


Program to exchange the value x and y using 3 variables?

temp = x; x = y; y = temp;


What is the integers value of 5'5?

The integer value is 5.


How many integers have the same absolute value equal to 8?

There are two integers that have the same absolute value of 8: 8 and -8. Absolute value measures the distance from zero on the number line, so both integers satisfy the condition of having an absolute value of 8. Therefore, the answer is two integers.


Write a program using 8086 instructions to double a number?

There isn't a reason to write a complete program to do this; in any assembly language just shift the value 1 bit to the left to double it.


Variable Is a location in the computer's memory where a value can be stored for use by a?

program. Each variable has a name that serves as an identifier, allowing the program to reference and manipulate the stored value. Variables can hold different types of data, such as integers, strings, or booleans, and their values can be changed throughout the program's execution. This flexibility makes variables essential for managing data and controlling the program's behavior.


How many integers have an absolute value of 15?

Two. +15 and -15 are the only integers with an absolute value of 15.


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.


When adding 2 integers will the answer be positive?

When adding two integers, the answer will be positive if both integers are positive, or if one is negative but its absolute value is smaller than the absolute value of the positive integer.


How many integers have an absolute value of 4?

There are two integers that have an absolute value of 4: 4 and -4. The absolute value of a number is its distance from zero on the number line, regardless of direction. Therefore, both integers satisfy the condition of having an absolute value of 4.


The product of two integers is zero what do you know about the value of the least one of the integers explain?

At least one of the integers is negative.