Kursy
Kursy
Kompilator kodu
Kompilator kodu
Dyskusja
Zespoły
Zaloguj się
Zarejestruj się
Menu
Dyskusje Q&A
Szukaj
Szukaj
Zadaj pytanie
Zadaj pytanie
Find max in java array without sorting?
(int
int
max
x
0 głosów
4 odpowiedzi
9th Aug 2017, 8:51 AM
saurabh singh
Help me please...to know the value of x from the equation using C++ : The equation is : 3x+2=2
of
value
x
0 głosów
1 Odpowiedź
16th Jul 2017, 8:20 PM
Fardin Alif
int num = 2; int x = 3; if(num >= 2) { if(x > 4) { num = 3; } else { num = 4; } } else {x = 1; }
c++
if
1 Głos
11 odpowiedzi
26th Nov 2022, 10:38 AM
Sourabh Jaiswal
What is the difference between declaring a variable x with x=5 and assigning int *ptr= new int; *ptr=5?
c++
pointers
1 Głos
4 odpowiedzi
26th Aug 2017, 1:47 PM
Ironrobot
How the output of this code i.e value of x is 3 at the end of the program.
c
0 głosów
3 odpowiedzi
6th Jun 2019, 5:04 PM
RILEY
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 głosów
4 odpowiedzi
16th Feb 2018, 3:16 AM
I Am a Baked Potato
Почему этот код выводит 6?
javascript
rus
while
x
1 Głos
2 odpowiedzi
2nd Dec 2018, 10:02 AM
MOKU
Can someone help me write a code to calculate the determinat of a n x n matrix?
algorithm
java
math
python
0 głosów
2 odpowiedzi
21st Sep 2018, 7:39 AM
aplneto
Why equal sign is called assignment operator rather than equal operator so what we say to this (x=y) x assign to y.
variables
0 głosów
8 odpowiedzi
23rd Mar 2019, 10:40 AM
Vishal Yadav
the sequence of this code if not 1 +1 ==y or x ==4 and 7 ==8
operator-precedence
python
0 głosów
3 odpowiedzi
22nd Dec 2016, 4:07 PM
SealCLi
How can i make a list auto populate for x items at incremental rate? For instance 99 times at 120% increase per item?
arraylist
arrays
lists
python3
4 głosów
2 odpowiedzi
22nd Aug 2018, 10:51 PM
Thomas Knight
¿Como puedo hacer un cuadro rojo en php de 200px x 200px con variables?. Estoy eprendie do a hacer paginas web
<?
2 głosów
2 odpowiedzi
29th Aug 2018, 1:34 AM
Bryan Alexis
What is the difference between void swap(int &x,int &y) and void swap(int x,int y) ?? Diffrence between int &x and int x
c++
functions
0 głosów
6 odpowiedzi
21st Oct 2016, 10:29 AM
Pradeep C
Write a program to take x and y as input and output the string x, repeated y times. Sample Input hi 3
answer
need
0 głosów
5 odpowiedzi
13th Feb 2022, 3:32 AM
Anshpreets 6106
error. x % y - это остаток от деления. 7 % (5 // 2) = 0.5
numeric-operations
python
0 głosów
3 odpowiedzi
22nd Aug 2016, 4:37 PM
Дмитрий
I typed the statement x<y, the code is running without errors. Output is showing x is greater than y.
c#
else-statements
if-statements
1 Głos
5 odpowiedzi
14th Jan 2017, 2:57 AM
Chaaru Manjuraj
[check the description] : does the strinig terminator "\0" included before x since i used i<8, but while printing it, the output
array
c
clang
string
strings
0 głosów
4 odpowiedzi
13th May 2022, 4:57 AM
blueshipswims
What will be the values of x and y after execution and how many times the loop will execute? Can someone explain step by step?
loops
-1 Głos
6 odpowiedzi
26th Feb 2018, 6:42 PM
Sarbjot Kaur
How many times is the body of the following loop executed? What is the value of x after the loop termination?
c++
code
problem
question
0 głosów
5 odpowiedzi
24th Jun 2021, 3:00 AM
Rao Muzaffar
Escribe un programa que tome x y y como entrada y genere la cadena x, repetida y veces. Ejemplo de entrada hi 3 Ejempl
variables
0 głosów
3 odpowiedzi
8th Feb 2022, 6:57 PM
Juan Guillermo Gallego
I have question, why int(input()) why? Like i get question x = int(intput()) y = int(input()) why ?
why
0 głosów
3 odpowiedzi
8th May 2021, 11:09 PM
BG Plays
#include <stdio.h> //function declaration int factorial(int num); int main() { int x = 5; printf("The factorial o
pleasehelp
0 głosów
2 odpowiedzi
2nd May 2019, 6:57 AM
Rahul Jaiswal
How to display the integer that appears the most in an array? Display as”the number x appears y times”...
arrays
csharp
low
support
0 głosów
5 odpowiedzi
27th Nov 2018, 11:49 AM
Sahan Edirisooriya
In this instance what does the <= between the x and the 10 mean?
rand
0 głosów
1 Odpowiedź
11th Apr 2018, 3:42 PM
Sir
I am not able to understand that the code that i have posed here line number 6 is sum+=arpan[x];. What is the role of x here?
arrayloop
arrays
java
4 głosów
7 odpowiedzi
9th Feb 2019, 3:32 AM
Arpan Bhattacharya
Why does this not work? x = input("") if x==potato: print("YOU SIR, ARE AMAZING") else: print("WHY...")
python
0 głosów
3 odpowiedzi
11th Aug 2016, 5:34 PM
Dania Miller
int[ ][ ] myArr = { {1, 2, 3}, {4}, {5, 6, 7} }; myArr[0][2] = 42; int x = myArr[1][0]; // 4
arrays
java
2 głosów
9 odpowiedzi
5th Jul 2017, 12:49 PM
Sheevika
hey, when i code x = [1,2,3] print(x) ->>> I get [1,2,3] When i code x = [1,2,3] print(x[]) I get an error How do i print 1,2,3 on my console without the '[]' around my numbers? how do i print my whole list?
lists
python
1 Głos
6 odpowiedzi
4th Sep 2016, 2:23 PM
Oliver
public class Program { public static void main(String[] args) { int x = 34; int y = ++x; int z = x+y
operators
1 Głos
5 odpowiedzi
30th Oct 2019, 9:09 PM
Daniel
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 Głos
6 odpowiedzi
29th Jul 2016, 10:31 AM
Rupam Das
i= int(input('Give me number!')) x = i + 10 nums=[ ] while i <= x: nums.append(i) i += 1 print(nums) Pls.e
python3
1 Głos
4 odpowiedzi
24th Oct 2020, 2:04 AM
Sushil Mundhra
I just tryed an if statement in the code playground. But im lost on how to get the variable to work. Take a look!
help
python3
variables
x
0 głosów
4 odpowiedzi
8th Jun 2017, 7:57 PM
Edward Seton
How do I create x is greater than or equal to 0 but less than or equal to 10 in Python?
inequality
python3
range
0 głosów
5 odpowiedzi
25th Jul 2019, 2:10 PM
Powersurge
Why There are only two asterisks (**) between x & y in exponentiation if Python ?
exponentiation
python
0 głosów
2 odpowiedzi
27th Feb 2017, 6:18 PM
Nirmal Kakati
What's 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) break
#henry
-1 Głos
3 odpowiedzi
27th Dec 2021, 5:35 PM
Opaal Henry
Can I make a case in CPP that tests if x < 2 for example
c++
switch
0 głosów
1 Odpowiedź
14th Nov 2018, 5:12 PM
Platinoob_
what if we increase the value of x in for loop while working with array
arrays
c++
for
loops
0 głosów
2 odpowiedzi
11th Jun 2017, 6:21 PM
Manish Kumar
What is the out put int X = 3; int y= xxy; console . write line (x+"y+")
c#
operators
-1 Głos
4 odpowiedzi
10th Aug 2016, 9:34 AM
Rami Salim
Mi pregunta es.Si introdujeramos los comandos adecuados enUn buscador (Google) podríamos tener una respuesta directa de x base?
sql
1 Głos
3 odpowiedzi
20th Sep 2017, 12:43 AM
Fernando Carranza
. Write a program in c++ which defines a function power() to return x raised to y.
c++
-2 głosów
3 odpowiedzi
11th Jan 2022, 2:25 PM
Swati Singh
What does string part do in console.writeline method and why we assign 0 to x and 1 to y?
c#
-1 Głos
5 odpowiedzi
3rd Sep 2016, 10:15 AM
Vivek Vishwakarma
r = lambda a : a + 15print(r(10))r = lambda x, y : x * yprint(r(12, 4))
python
0 głosów
1 Odpowiedź
29th Dec 2020, 7:34 AM
Kevin Esmero
When writing a switch, how can I specify a case in which x is greater than something?
javascript
switch
0 głosów
3 odpowiedzi
1st Dec 2017, 6:44 AM
Hessam Tayebi
A little help guys, How do i get this working. The program should prompt the user x + y
java
1 Głos
2 odpowiedzi
13th Jun 2019, 8:47 PM
Tumi Sibiya
Why doesn’t this work when i use decimals for x ?(Double for 31 days calculator)
31
calculator
days
double
0 głosów
1 Odpowiedź
22nd Nov 2020, 2:14 AM
Jonathan Klein
is there a way I can store all the values of x in this short code without having to display them using cout? int main() { for (int x=0; x<5; x++){ //how do i store the all the values of x without having to display them?// }
c++
3 głosów
5 odpowiedzi
24th Dec 2016, 4:22 PM
Cody Arthur
How is this equal to 10 var arr =[1,2,3,3,2,0] var x = 0 for (var i=1; i<arr.length; i++){ x+= arr[i] } alert(x)
https://code.sololearn.com/wufk4avd3ydi/?ref=app
0 głosów
6 odpowiedzi
23rd Sep 2018, 12:11 PM
Adebayo Ogunmoriyele
What are the values of the variables s and x after running this piece of code?
ado
-1 Głos
2 odpowiedzi
18th Mar 2021, 5:56 PM
Charityn
If there any way to make x = 2 when i call the second f(arr)
sololearn
0 głosów
1 Odpowiedź
30th Oct 2019, 5:10 PM
Abdelrhman Albarbary
what is the problem in this code???
If
int(input())
x
x+y>0
y
1 Głos
6 odpowiedzi
20th Jan 2018, 11:15 PM
Samuel Antoine
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
< Do tyłu
1
...
12
13
14
...
18
Dalej >
Popularne dzisiaj
X velocity
2 Votes
And... Who is the staff then?
3 Votes
Files not linking in C++
0 Votes
I am a super beginner
0 Votes
Web Dev
1 Votes
I want to make a triangle area calculator ,anybody can teach me
2 Votes
Img & web server or personal info
0 Votes
Pls give me an idea
1 Votes
Why Pro?
1 Votes
How to achieve "Sololearner" achievement?
0 Votes