Home>
I want to enter the multiplication code in PHP.
$input_line = fgets (STDIN);
echo "XXXXXX";
?>
Is this all right?
-
Answer # 1
-
Answer # 2
echo 2 * 3;// 6 $a = 2; $b = 3; echo $a * $b;// 6 $a = 2; $b = 3; $c = $a * $b; echo $c;// 6
Related articles
- python - i don't know the cause of the error
- php - i don't know how to get the characters from sql at the end at the login home page
- xcode - i don't know where the csv is stored
- opengl - i don't know the shader frag vert
- i don't know how to upload php
- i don't know the cause of javalangarrayindexoutofboundsexception
- github - i don't know what the commit name is
- c # - i don't know the answer to the exercise
- php - i don't know how to connect with mysql
- c ++ - i don't know the transition of abc180 e bit dp
- i don't know the source of go study site
- unity - i don't know the type of prefab
- i don't know the cause of vba error 91
- html - i don't know the position of the box and the position of the border
- java - i don't know the output of the instance
- php - i don't know where to put the if statement in html
- flask - i don't know the key error when creating line bot
- php - i don't know how to use try ~ catch and pdoexception
- html - i don't know the calc () function
- javascript - i don't know the value of this
Trends
In the first place, it's likely that you don't know what is multiplication ...
If you follow the original code flow
Is it ...
・ Input
・ Output