Q&A Discussões
can someone tell me how to make it impossible for a user to type a 'userchoice1[x]' value that does not range from 1 - 10.
If you also know a way I can make the user input another value for the 'userchoice1[x]' variable if it is less than 1, I'll appreciate you share the knowledge with me.
please see the short code below
1 Voto
2 RespostasHi guys..I need your help..In my project, there is a task to create custom album for videos.album creation working fine.but i want to delete specific video from that album..Deleting whole custom album working.But struggling to delete specific video from album? pls give any solution or references ...thanks in advance
0 Voto
2 Respostaswhat languages are needed to allow customers to upload a form to a server, which can then be displayed on another page (Similar to ebay). i cant wrap my head around what code is needed (other than the method=post)...i have created a database using sql but cant make sense of how to allow a user to enter details...for it to then appear on the home page of my website for example. many thanks!
0 Voto
2 RespostasQ1: should we always assign one svg size if more than one graphs are drawn?
Q2: again, I want to make two different animations of different shapes? in the same svg, without changing the size, no result?
Q3: and again, in a same svg sized, want to make path with combinations of C, S , A etc, no results?
what is proper ways to do the above? what attentions should we pay to ?
0 Voto
2 Respostaspublic class Vehicle {
int maxSpeed;
int wheels;
String color;
double fuelCapacity;
void horn() {
System.out.println("Beep!");
}
}
class MyClass {
public static void main(String[ ] args) {
Vehicle v1 = new Vehicle();
Vehicle v2 = new Vehicle();
v1.color = "red";
v2.horn();
System.out.println(v1);
}
}
Explain its outcome. I am unable to get the last line of outcome.
-1 Voto
2 Respostas