Cursos
Cursos
Compilador de Código
Compilador de Código
Discutir
Teams
Fazer login
Registrar
Menu
Q&A Discussões
Pesquisar
Pesquisar
Faça uma pergunta
Faça uma pergunta
Int x= 0; cout<<x++
c++
1 Voto
4 Respostas
21st Jan 2019, 1:36 AM
Irfan Sukri
X= 9y / 5+32
c++
0 Voto
2 Respostas
15th Mar 2018, 9:53 AM
computer
The statement x*=3; is equal to 1) X=3*; 2) x=3; 3) x= x *3; 4) x= x+3;
java
0 Voto
3 Respostas
19th Aug 2020, 9:21 AM
Darpan Kushwaha
What's the output ? var x= 2+false; alert(x);
javascript
0 Voto
4 Respostas
8th Jul 2019, 5:12 PM
Rohit Kumar Srivastava
what this solve , int x= 2; int y=4; int result =x+y; system.out.println (.....)
java
operators
-39 Votos
38 Respostas
30th Jul 2016, 12:57 AM
Ani Nuraeni
String x= "Computer"; String y= " Application "; System.out.println(x.substring(1,5));
java
output
strings
0 Voto
5 Respostas
25th Feb 2017, 7:17 PM
Yashasvi Rastogi
why come this output ==10? int x=3; x= ++x + ++x; cout<<x;
c++
4 Votos
4 Respostas
13th Jun 2016, 1:44 PM
Lekhraj Singh
Why is float x= 11/100 ; in c++ only showing 0 ?
c++
1 Voto
2 Respostas
30th Aug 2022, 6:32 PM
Emediong Ekoh
what is the result of >>> x= "a" >>>x*=3 pring(x)
python
python3
-1 Voto
2 Respostas
9th Jul 2017, 7:01 AM
Jacob Laba
Please somebody explain me var x= 8; var a = (x++)% 3; document.write(a);
javascript
0 Voto
4 Respostas
28th Aug 2021, 9:43 AM
Bikash Jyoti Bhagawati
Y= ++X - X++ + --X if X= 5 In JAVA
java
-1 Voto
1 Resposta
17th Aug 2020, 3:50 PM
Vishruth M R
Could someone explain the logic behind sum of x= 12|3 and y = 15|3 as 30?
python3
1 Voto
11 Respostas
4th Mar 2018, 4:55 AM
pankaj pokharkar
How get value numerals from x= "11" that was x=11 with help JavaScript
<script>
javascript
0 Voto
2 Respostas
14th Aug 2017, 5:38 AM
Alex Polev
Why is it showing error when i inserted the values - x= 2, y=1 and z=5?
elif
else
if
input
print
1 Voto
3 Respostas
30th Nov 2020, 12:22 PM
Anve
Can I use x = 2 and x= 3 both the values in one code
javascript
variables
0 Voto
2 Respostas
4th Sep 2021, 4:12 AM
Movie Time
What is wrong with my code? I got 'cannot find the variable on this line' int x= myScanner.nextInt();
java
1 Voto
7 Respostas
16th Jan 2021, 2:02 PM
Cindy_ywairimu
char x= name; print("%c",x) showing syntax error what is the wrong i have followed all syntax rules it is c language kindly answ
clanguage
java
python
0 Voto
3 Respostas
15th May 2021, 3:09 PM
P Mani Kanta
what is the result stored in x after evaluating the following expression int x=5; x= x++*2+3*--x;
output
-2 Votos
1 Resposta
21st May 2019, 12:11 PM
Aman Kumar
int x= 9; int y= 5; printf("%d",x%y); I am not getting out put can you plz help me
plz
1 Voto
2 Respostas
17th Nov 2023, 1:23 AM
ujwal deep Parimi
int x= 0; while (x<= 10) { x+=2; cout<<x; } How many times will the cycle be performed?
c++
cpp
output
programming
0 Voto
4 Respostas
10th May 2020, 10:29 AM
Mihaela Trencheska
How to calculate. X= {--b + √(b*b -- 4*a*c)}/100; in a program where a,b and c are inputted
java
0 Voto
6 Respostas
13th Jun 2017, 2:01 PM
Kishan Mittal
Hey i cant understand a multiple choice qs It's like this x= "abcd" for i in range(len(x)): print(i) Question: what
python3
3 Votos
4 Respostas
14th Apr 2020, 6:15 AM
Sukanya Bag
I need explanation pls, why does x= 1 ? var x=1; var y=4; function func(){ while (y>0){x++; y--;} }document. write(x);
javascript
0 Voto
6 Respostas
3rd Jun 2020, 10:51 AM
Silva Olushola Fredrick
Class Output { Public static void main ( String args[]) { String str= "true false true"; boolean x= Boolean.valueOf(str); System.out.print(x); } }
java
0 Voto
5 Respostas
25th Feb 2017, 9:09 PM
bhargav
Why is output 17? it is calculated as follows: case 1( x= 3+3=6, case 3 (x=6+3=9), case 5 (x=9+3=12) , default (x=12+5=17)?
c++
0 Voto
5 Respostas
26th Mar 2021, 8:59 PM
Тимур Завьялов
Hello, How can I get an input of print(z) if, x= "2" and y = "5" and z= int(x)+int(y)
input
with
working
0 Voto
1 Resposta
4th Dec 2022, 1:45 PM
Mehbu
a=2;b=3;c= Find the value of X In all the sentences, as follows X=a*b*a-(b+c/a) X=a mod 100 X=a mod b mod c X= c*c*b\2 + 5
.
0 Voto
5 Respostas
1st Apr 2021, 6:20 PM
Mohammad _ 97 Alawneh
int[ ] x= new int[7+0]. when check length it shows 7.... while if it counts from 0 it should have a pength of 8.
arrays
java
0 Voto
4 Respostas
18th Jul 2016, 10:51 AM
Vaibhav
In Java, is there a way to create variable labels using another variable in a for loop:for(int x= 1; x < 3; x++){int y_x = 0;}
begginer
java
loop
0 Voto
3 Respostas
21st Dec 2018, 3:06 PM
Marcelo
In python3 cant we use if statement as - x= int(input (' 2+2') if x = 4 print ('correct') and if we can then how?
python3
0 Voto
3 Respostas
11th Dec 2017, 3:41 PM
Arjun Mahanty
File in the blank to print the sum of the tow variables. int x= 2; int y=4; int result = ; system. out.printIn( );
operators
-1 Voto
2 Respostas
4th Jun 2020, 4:35 PM
Krrish Rk
Please help me complete this program to enable me get an output of y int main() { int x = 9; int y = x % 5; x= ; cout<<x*y ;
c++
1 Voto
4 Respostas
27th Sep 2016, 5:16 PM
Ibim
int x = 5 ; x = (x++)*2+3+(--x) System.out.println(x); answer is 18
after
evaluating
in
result
what
x
x++*2+3--x;
x=
0 Voto
3 Respostas
25th Sep 2020, 12:58 PM
Ali Xd Rocks
public class Program { static int div(int a, int b) { if(b == 0) { throw ArithmeticException("Division by Zero"); } else { x = a/b; return x; } } public static void main(String[] args) { int x= div(42,2); System.out.println(x); } } what is wrong with this code ..
exception
java
method
0 Voto
5 Respostas
18th Sep 2016, 4:14 PM
subham singh
Given a list of numbers, output their sum using for loop.
[42,
0,
1,
124,
3,
555,
67,
7,
8,
8897,
99]sum=0for
i
in
s
x:
x=
0 Voto
6 Respostas
18th Jul 2022, 9:40 AM
Syed Anas
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
Quente hoje
Sticky position
3 Votes
Help please?
3 Votes
How to get better with problem-solving and programming
1 Votes
Ejercicio Pytho
0 Votes
Odd even threads without condition variable
0 Votes
Online voting system
2 Votes
What is that z for
0 Votes
Suggestions needed
4 Votes
Bug on "Java for Beginners Module 3 Quiz"
1 Votes
SQL practice
2 Votes