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 | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

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

2nd Sep 2016, 6:12 PM
anthony
18 ответов
+ 3
x = 0 while x <=20 : print (x) x += 2
26th Feb 2020, 2:03 PM
Rabia Boshory
Rabia Boshory - avatar
+ 1
write while
12th Apr 2018, 12:05 AM
Bitthal Maheshwari
Bitthal Maheshwari - avatar
+ 1
fill in the blanks to increments x's value by one using the ++ operator and print its value to the screen. Int ×=20 x _ = ; cout << _ <<end;
30th Mar 2021, 8:07 AM
Bafoyev Abdullo
+ 1
C# int num = 0; while (num < 100) { Console.WriteLine(num); num +=2; }
10th Sep 2021, 3:19 AM
Chris
Chris - avatar
0
write while in the blank
4th Sep 2016, 12:43 PM
Lois Wakili
Lois Wakili - avatar
0
x=0 while x<=20: print(x) x+=2
3rd Jan 2017, 7:31 PM
Siva Raman
Siva Raman - avatar
0
x = 0 while (x*2)<= 20: print (x) x+=2 result: 0 2 4 6 8 10
8th Jan 2017, 7:21 AM
Disha Chavan
Disha Chavan - avatar
0
yeet
7th Feb 2019, 12:06 PM
Ethan
0
fill in the blanks to increments x's value by one using the ++ operator and print its value to the screen. Int ×=20 x _ = ; cout << _ <<end;
18th May 2019, 4:47 AM
R.Ram
R.Ram - avatar
0
ksdfa
30th Jan 2020, 10:43 AM
mercenary
mercenary - avatar
0
shush
10th Dec 2020, 10:16 AM
charles
0
x = 0 while are this............ x <=20 : and is ans......... print is ans ........ (x) x += 2
4th Jan 2023, 4:37 PM
Engr.Ayesha Liaqat
Engr.Ayesha Liaqat - avatar
0
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
9th Nov 2023, 4:42 AM
BaurzhanKZ Games
BaurzhanKZ Games - avatar
- 1
while and : fill up the bracket x=0 while x<=20: print(x) x+=2
21st Dec 2020, 4:18 PM
uche okpala
uche okpala - avatar
- 1
fill in the blanks to create a loop that increment the value of x by 2 and print the even values. x = 0 while (x*2)<= 20: print (x) x+=2
18th Feb 2021, 2:21 PM
Syed Fahad Ahmed
Syed Fahad Ahmed - avatar
- 1
x=0 while x<=20: print(x) x+=2 while : print
4th Mar 2021, 5:18 AM
BHUVANENDRA CHOWDARY V
BHUVANENDRA CHOWDARY V  - avatar
- 2
Write 'while' without the quotes in the blank
3rd Sep 2016, 4:56 PM
Kshitij Joshi
Kshitij Joshi - avatar
- 2
giveme Fill in the blanks to create a for loop that prints only the even values in the range: for i in range (0,20, ) give mee valueee
12th Aug 2019, 5:59 AM
Divya Cheemaladinne
Divya Cheemaladinne - avatar