Cursos
Cursos
Compilador de Código
Compilador de Código
Discutir
Preços
Teams
Fazer login
Registrar
Menu
Q&A Discussões
Pesquisar
Pesquisar
Faça uma pergunta
Faça uma pergunta
In svg rectangle what is x and y?????
<svg>x
y
0 Voto
2 Respostas
7th Apr 2021, 3:35 PM
Mukesh.G
can we assign value 0 in index x in array
c++
0 Voto
11 Respostas
5th Feb 2020, 4:37 AM
vishal shivhare
Why its giving error? And not increamenting x twice?
java
1 Voto
5 Respostas
24th Mar 2020, 9:46 PM
Ana
l want to program code that compare two values x and y , return 1 if x is greater than y else return 0 if x is equal to y or else return -1 if x less than y . Then program must accept user input
function-arguments
python
0 Voto
6 Respostas
13th Oct 2016, 8:20 AM
James T Togara
x = [1,2,3,4,5] x.append(x[:]) print(len(x)) # output:6 # i was thinking the len should be 10 why 6?
python3
0 Voto
3 Respostas
8th Oct 2021, 11:20 AM
Khalif Baby👶
How many times will the following loop work? int x = 0; int y = 5; while (x < y) { System.out.println("Hello"); x++; }
o
0 Voto
5 Respostas
5th May 2022, 6:00 AM
jayson abion
#include <stdio.h> //function declaration int factorial(int num); int main() { int x = 5; printf("The factorial o
pleasehelp
0 Voto
2 Respostas
2nd May 2019, 6:57 AM
Rahul Jaiswal
В одном из уроков был пример int x = 10 ; double = 20 ; Оба числа целые ,причем сдесь double ?
doubl
int
1 Voto
2 Respostas
21st Jun 2018, 10:07 AM
Kisliy
int x; x +=10; spits out 4309688. Explanation?
c++
operators
2 Votos
2 Respostas
21st May 2017, 11:27 PM
Sohn Jmith
def add(x, y): return x + y def do_twice(func, x, y): return func(func(x, y), func(x, y)) a = 5 b = 10 print(do_twice(add, a, b))
functions
python
return
1 Voto
6 Respostas
29th Jul 2016, 10:31 AM
Rupam Das
How I give the value of name to x
html
javascript
0 Voto
3 Respostas
21st Jul 2023, 1:39 PM
Raj Singh
def add(x, y): return x + y def do_twice(func, x, y): return func(func(x, y), func(x, y)) a = 5 b = 10 print(do_
funcionea
1 Voto
2 Respostas
23rd Apr 2019, 6:42 PM
Wander Anime
Can this hold true ? If a number x has no divisor in the interval [2,x/2] , then x is prime.
c
c++
java
1 Voto
7 Respostas
21st Jan 2017, 11:03 AM
WONDE-TOM
What the expression " x += 1" means?
regular-expressions
0 Voto
3 Respostas
21st Jun 2017, 4:52 AM
Vishal Suthar
What is the out put int X = 3; int y= xxy; console . write line (x+"y+")
c#
operators
-1 Voto
4 Respostas
10th Aug 2016, 9:34 AM
Rami Salim
In python3. X what is the solutino of (8+4)/2
code
1 Voto
3 Respostas
8th Jul 2020, 12:05 PM
Raju Baghel
Why does this only output the x value??
code
ruby
0 Voto
3 Respostas
7th Nov 2016, 4:52 AM
Nayomal
How can i store the value of x ?
html
html5
javascript
2 Votos
1 Resposta
7th Feb 2019, 2:07 PM
DryUndead
Посчитать значение косинуса в точке X через ряд Тейлора. X – это комплексное число. Неточность вычисления меньше 0.0001.
c\c++
-1 Voto
2 Respostas
7th Nov 2017, 10:29 AM
Tsar1k
#include <stdio.h> void main() { float x = 0.1; if (x == 0.1) printf("Sanfoundry"); else printf("Advanced C Classes"); }
c
c++
2 Votos
3 Respostas
16th May 2020, 12:56 AM
𝒱𝑒𝓃𝑜𝓂𝑜𝓊𝓈
How can I change x Axis to range -10 to 10
matplotlib
python
9 Votos
4 Respostas
5th Apr 2021, 4:24 PM
Oma Falk
Why does x also increase when we print y?
java
operators
0 Voto
5 Respostas
11th Jul 2018, 4:07 PM
Chris Welham
Why do In-place operators allow you to write code like 'x = x + 3' as 'x += 3'?
operators
1 Voto
2 Respostas
14th May 2018, 11:49 AM
Jujar Panesar
how to retrieve column wise data from list, eg 2nd column from x x = [ [1 , "vimal" , 1111] , [2 , "abhi" , 2222] , [3 , "ray
python
0 Voto
2 Respostas
13th Aug 2020, 2:17 PM
Ritik Sengar
Suppose that x is 1. What is x after the evaluation of the following expression? (x > 1) && (x++ > 1)
java
2 Votos
3 Respostas
18th Nov 2020, 3:45 PM
Zaina Fannana
Didnt understand the second fornatted string code. Console.WriteLine("x = {0}; y = {1}", x, y); Why x & y is 0 & 1?
c#
output
1 Voto
3 Respostas
18th Aug 2017, 12:39 PM
Akhi Jetra
Are there effective methods for memorizing? If so, share your methods.
=
int
int()
new
x
5 Votos
3 Respostas
30th Jun 2019, 3:42 PM
Fsg So
A C++ Program To Swap Two Numbers x and y if x is greater than y. Output both numbers
c++
0 Voto
1 Resposta
30th Apr 2020, 9:45 AM
Nathaniel Kwaku Awenate
#include <iostream> using namespace std; int main() { int x = 15/(3*(5/3)); cout << x; return 0;} D output wz 5 hw
operators
3 Votos
9 Respostas
29th Mar 2018, 6:32 AM
JeClives
we initialized x to 5 .. then we used the method addOneTo(x) that increments x by 1. The output stays 5 why????
java
reference-types
value-types
2 Votos
2 Respostas
11th Nov 2018, 8:28 AM
Liza BOUMALI
What is the output of this code? list = [2, 3, 4, 5, 6, 7] for x in list: if(x%2==1 and x>4): print(x) bre
python
2 Votos
18 Respostas
14th Sep 2020, 4:21 PM
Anas Emad
Why a and b interchange for x and y
functions
0 Voto
2 Respostas
29th May 2020, 8:41 AM
SATYANSH MITTAL
someone help me i have a problem this code already put x = y and will not
=
a
already
and
code
have
help
i
me
not
problem
put
someone
this
will
x
y
0 Voto
1 Resposta
19th Dec 2020, 7:20 PM
gleicielle camargo
Help me to code it x = (r+7)**2 r is in range (1,18) Find the sum of all the values of x. For e.g. if r is 1, x=64 If r is 2, x
(r
=
code
helpme
itx
to
-2 Votos
2 Respostas
7th Jul 2020, 9:57 PM
Amitabh Pandey
if x is a float and I have the usual increment x++, will x be increased by 1, or by something else?
c++
data-types
1 Voto
6 Respostas
15th Jun 2016, 1:37 PM
naghree
Why this code says x not defined in line 5
functions
2 Votos
4 Respostas
15th Apr 2020, 7:32 AM
Jaweed
what is meaning of x =+ 1 ??
javascript
-2 Votos
2 Respostas
5th Aug 2017, 10:05 AM
帛融蔡
C++ program to sum up from x to y
c++
-1 Voto
3 Respostas
27th Aug 2018, 6:33 PM
Junaid Bashir
What is the result of this x=a x*=3 print x
jomi
0 Voto
6 Respostas
20th Feb 2021, 6:37 AM
Jomiloju olopade
I don't understan this operator %= why the result is 3 for this expression? int x = 15; int y = 6; Console.WritLine(x %= y);//output 3
c#
0 Voto
9 Respostas
15th Jun 2016, 5:53 PM
Tommaso
Fill in the blanks to print the values of the x variable 5 times.
java
loops
1 Voto
16 Respostas
30th Mar 2017, 9:14 PM
Washington de Jesus
What does f(31415927) return, for the following function definition?def f(x): d=0 while x > 1: (x,d) = (x/2,d+1) return(d)
python3
0 Voto
4 Respostas
16th Feb 2018, 3:16 AM
I Am a Baked Potato
JS how to increase a value by x onclick
experimenting
html
increase+
javascript
learning
web
1 Voto
1 Resposta
25th Jul 2019, 5:02 AM
Ginfio
Replace consecutive repeating character with x in string c#
c#
0 Voto
1 Resposta
7th Sep 2020, 3:42 PM
MOHIT TAWARE
def my_func(x): assert x > 0 , "Error!" print(x)
assertions
0 Voto
2 Respostas
21st Aug 2019, 5:01 PM
Rupal Raut
What is the diffrence between range()and x range() function?
range
xrange
1 Voto
3 Respostas
18th Dec 2017, 4:38 PM
lokesh reddy
carre () : une fonction qui recoit un entier x et retourne le carree de x en langage php
merci
0 Voto
1 Resposta
3rd Mar 2022, 5:18 PM
dan arcadus yakoudou
[Solved] Why is this output 27 when #define x 5+2
c++
define
1 Voto
5 Respostas
14th Sep 2018, 4:54 AM
Philip
how to check x and y axis of screen touch
javascript
1 Voto
5 Respostas
10th Mar 2021, 3:40 AM
Michael
Correct 3D Rotation Along Y and Z Axis? X is Perfect
3d
axis
canvas
cuboid
help
javascript
js
rotation
6 Votos
3 Respostas
28th Jun 2018, 3:07 AM
Andre Daniel
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
< Anterior
1
...
7
8
9
...
18
Próximo >
Quente hoje
Fix code
0 Votes
Fast coding (mobile)
1 Votes
..
1 Votes
Beginner_to_SoloLearn
2 Votes
How to learn C++ and how long does it take
1 Votes
Coding help
2 Votes
DSA doubt
1 Votes
Bridge pattern use case
0 Votes
Recover challenge history
0 Votes
Data structure using C
0 Votes