Posts by ZeroCold • 43 points
4 posts
-
0
votes2
answers789
viewsQ: Error installing application on mobile
I am getting this error while trying to install the application on my mobile phone, and I am not able to find the error inside the manifest.…
-
1
votes1
answer46
viewsQ: I’m Having Trouble Opening a New Activity after taking a photo with android studio
Code public class primeiraTela extends AppCompatActivity { ImageView imageView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);…
-
0
votes2
answers78
viewsQ: I want to queue numbers. Python 3.6
I want to show the output of the data in queue form, for how many times the user wants. def ex1(): valo = int (input("Insira o numero")) for t in range (1,valo+1): print((int(valo))*1) print (ex1())…
python-3.xasked ZeroCold 43 -
-1
votes1
answer26
viewsQ: Return a value from a two-variable calculation to show the user using POO. Result is not printed on screen
Scanner deltas = new Scanner(System.in); Double ds; System.out.println("Insira o valor de Delta S"); ds = deltas.nextDouble(); setDeltas(ds); Scanner deltat = new Scanner(System.in); Double dt;…