Курсы
Курсы
Компилятор кода
Компилятор кода
Обсуждения
Teams
Войти
Регистрация
Menu
Обсуждения
Поиск
Поиск
Задать вопрос
Задать вопрос
Can someone know all languages/codes..eg. Java HTML/CSS/python/c++/c#/VB/php etc... Do u guys think x possible?
programmers
1 голос
8 ответов
13th Nov 2016, 10:24 AM
raymond
my program x = int(input(" enter a no: ")) print(x) print(x + 3) print(x) then i enter x = 7 output is like enter a no:7 10 7 for both the print(x) why I get different output???
python
variables
0 голосов
12 ответов
29th Jul 2016, 10:21 AM
Harsh Kanzariya
Why my bor not hide if i click on button X please tell
help
solo
sololearn
3 голосов
2 ответов
13th Jul 2020, 11:48 AM
Papa Penguin
How can we make this program by loooping????? It is kust type of x sign!!!!
java
program
3 голосов
4 ответов
21st Jun 2018, 3:57 PM
Harsh Agrawal
Why this value of x after this code = 7 , I am not understand
c#
0 голосов
6 ответов
10th Apr 2017, 9:49 PM
shihab mohamed mansour
fill in the missing operator to decrease the value of x by one
c#
operators
0 голосов
5 ответов
27th Jun 2016, 11:13 PM
Deel John
If there any way to make x = 2 when i call the second f(arr)
sololearn
0 голосов
7 ответов
30th Oct 2019, 5:10 PM
Abdelrhman Albarbary
How I get 1 with a variable x and y with strings.out ?
notepad
3 голосов
1 ответ
24th Nov 2019, 1:42 PM
Evergamer 00
Help to solve it in simple way,please! Write a code, which will have a function, that will multiply 2 matrices A and B of X to X
c++
code
coding
cpp
exam
help
solve
0 голосов
2 ответов
4th Dec 2020, 4:07 AM
Azat Malgazhdar
#include <iostream. #include <cstdlib> using namespace std; int main () { srand(98); for (int x = 1; x <= 10; x++) {
c++
rand
0 голосов
2 ответов
14th Jan 2017, 6:42 PM
gyana nayak
why in the postfix increment , x increases and y equals " old x" , even if the equals x after increment?
c#
operators
0 голосов
2 ответов
19th Aug 2016, 7:58 PM
Omar Hossam
Any one tell me pre-increment of array???How the value of x became 10???
array
c
pre-increment
2 голосов
3 ответов
20th Sep 2020, 6:12 AM
ASHA NIKAM
What's arr [x] in blow code? Arrays have numbers and x is not a number!
arrays
dom
html
javascript
1 голос
9 ответов
16th Aug 2017, 5:40 AM
Waqas Shah
I want to understand this: var x=0 while (x<6) { x ++; } document. write (x); output was 6
js
0 голосов
11 ответов
12th Jun 2018, 1:25 PM
Favor Mofadeke Salako
Why it's wrong? X=4 X + = 5 Print (x) Don't get it? Need help
python
0 голосов
7 ответов
28th Jan 2017, 12:43 AM
Bella
What will be the content of y and z after executing the code given below: int y=10, z=2; for (int x = 1; x <= 10; x=x+2)
javascript
0 голосов
3 ответов
2nd Aug 2020, 6:20 AM
Biswajit Sarkar
How to put a X and Y point in 2d array ?(x and y are in a class)
arrays
c#
4 голосов
4 ответов
27th Dec 2018, 8:03 AM
Dejan
What is the output of this code? int x = 1, y = 1, z = 1; cout << (++x || ++y && ++z); cout << x << y << z;
c++
0 голосов
4 ответов
21st Aug 2018, 10:27 AM
Vedansh
What is the value of x after executing the following? int x=1-(-1==~0);
variables
0 голосов
2 ответов
2nd Jun 2019, 8:34 AM
Rohit Ahuja
How does the for in this code work? What does x represent?
?
1 голос
2 ответов
16th Apr 2020, 8:49 PM
3.14
What is the output of the following code? int x = 14; System.out.println(x++);
#15
0 голосов
3 ответов
8th Aug 2022, 4:17 PM
DR.VENGATESAN.G COMMERCE-CA
Hi everyone,How do i assign a value into a viriable ,when i type print(x=7) it says x not defined
variables
3 голосов
5 ответов
2nd Jul 2019, 2:11 PM
Vusumuzi Mabena
Fill in the blanks to include the object "x" in the output. class X end X = X.new puts "Object data: ___"
ruby
-2 голосов
1 ответ
22nd Jun 2021, 6:45 PM
Yahya Jamil
Write a program which will raise any number x to a positive power n. Obtain values of x and n from user
a
and
any
c++
from
n
n.obtain
number
of
positive
power
program
raise
to
user
values
which
will
write
x
-1 голос
2 ответов
4th Aug 2017, 3:52 PM
Humangasaur
#include <iostream> using namespace std; int main() { int x = 5, y = 6, z = 50, sum; cout << sum; sum= x + y + z;
c++
1 голос
2 ответов
11th Jul 2019, 5:49 PM
Shrusti Singhaniya
how I have to do if I want to catch you a number(input) them I say x = input... so if x > 5...
if-statements
-1 голос
2 ответов
23rd Feb 2019, 12:02 PM
jaime
What is meaning of or value if x x+= y. if y=5
c++
1 голос
3 ответов
12th Sep 2016, 1:04 PM
SHUBHAM BHUJBAL
x = Tuple("10","20","30","40","50") Tuple =("10","20","30","40","50") print("reverse") whats wrong on my code help pls
reverse
0 голосов
3 ответов
26th Sep 2020, 8:25 PM
Arlyn dela Cruz
After watching a video I learned that int x = Convert.ToInt32(Console.ReadLine()); and int x = 0 x = int.Parse(Console.ReadLine()); essentially seem to be the same thing...why is that, and when would one way come in handy over the other?
c#
0 голосов
3 ответов
2nd Aug 2016, 4:15 AM
Dakota Lewis
what is the purpose of y=x++ i.e assigning x to y then increment it?
c++
operators
2 голосов
6 ответов
5th Feb 2017, 7:41 AM
Sopanaadevi.S
How can I get the x and y position of the mouse ?
javascript
pos
x
y
4 голосов
2 ответов
26th Feb 2017, 9:44 AM
Ninja Nudiste
in the end we get value of x equal 3. Why it’s not 2?
javascript
0 голосов
2 ответов
23rd Jul 2023, 3:26 PM
🕸carpe diem🕸
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
1 голос
2 ответов
18th Jun 2019, 12:55 PM
Ranjeet singh jitty
CHALANGE::Code that output a circle to an X Y grid in bianary.
c#
c++
challenge
html
java
1 голос
3 ответов
23rd Oct 2017, 5:18 AM
Bob
How do I find max y(x), cause now it's only showing x max
code
codeplayground
find
functions
max
self-learning
sololearn
0 голосов
2 ответов
19th Jan 2021, 7:45 AM
zaya1235
Why int x = 16 ‰ int y = 5 equal 1?
c#
0 голосов
4 ответов
2nd Mar 2017, 2:44 PM
Kovalevich Vladimir
How To print the files older than some x days
python
0 голосов
2 ответов
27th Jan 2017, 7:17 AM
Gopikrishna A
What output results from the following code? int x = 14; System.out.println(x++); Output is 15 Still showing wrong ans.
hi
-1 голос
13 ответов
27th Jun 2017, 6:06 PM
Ashwin Sengupta
HTML5: Code for SVG to animate in both x and y simultaneously
and
animate
html
html5
svg
x
y
0 голосов
3 ответов
22nd Jul 2018, 11:58 AM
BBIIIGGGG
How can I command the user to enter value of x so condition can be true
help
0 голосов
6 ответов
18th Jul 2020, 6:09 AM
Ajay
i want to know the answer of this program: if x is 3456
#python
1 голос
3 ответов
24th Jan 2022, 6:52 PM
pooja balamurugan
def apply_twice(func, arg): return func(func(arg)) def add_five(x): return x + 5 print(apply_twice(add_five, 10))
functions
python3
0 голосов
2 ответов
2nd Aug 2019, 7:24 AM
SUNDARAMAN IYER
[SOLVED] Can anyone please explain me why doesn't the value of x change, while I'm using this method?
python
1 голос
8 ответов
24th Jun 2021, 5:39 AM
Αλέξανδρος
if x = [1, 2, 3, 4, 5], what is the output of print(x[ : ])?
lists
1 голос
4 ответов
21st Apr 2020, 8:47 AM
Md. Faruk Hossain
Can anyone explain this java statement and the value of x after evaluating::- where int x=4
java
operators
1 голос
9 ответов
17th Jul 2018, 4:01 PM
Neha Dhar
What is wrong? 1) int x = 5/2.0; 2) byte b = 50; b = 2*b; 3) int x = 10; float f = 2.0*x;
error
java
operators
strings
wrong
0 голосов
1 ответ
16th Feb 2021, 5:14 PM
Alrabab Saeed
How can I swap the values of X and Y? Here's the sample output
c#
3 голосов
1 ответ
7th Nov 2020, 7:42 AM
Joyce
#include <iostream> using namespace std; int main() { int x = 15/(3*(5/3)); cout << x; return 0;} D output wz 5 hw
operators
3 голосов
9 ответов
29th Mar 2018, 6:32 AM
JeClives
X layers V pattern - Help me solve this in any language please
c
help
needhelp
py
python
1 голос
3 ответов
3rd May 2021, 5:46 PM
Mohamed Ashik Badusha
fill in the blanks to create a loop that increment the value of x by 2 and print the even values. x=0 _x<=20: print(x) x+=2 pls help me out
loops
python
0 голосов
18 ответов
2nd Sep 2016, 6:12 PM
anthony
Задать вопрос
Задать вопрос
Задать вопрос
Задать вопрос
< Предыдущий
1
...
8
9
10
...
18
Следующий >
Актуальное сегодня
Control Flow
2 Votes
How to use the get() method
2 Votes
Game Dev Path
1 Votes
why is this platform infested with web devs
2 Votes
So this what I'm trying to solve
2 Votes
How to get account back?
1 Votes
PHP Tutorial Idea
1 Votes
Problem whit Javascript
1 Votes
So how do I create python file and be able to code in it?
0 Votes
Use Python for string manipulation and sorting.
1 Votes