• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 17:52
CEST 23:52
KST 06:52
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team Liquid Map Contest #22 - The Finalists12[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy21
Community News
2026 GSL Season 1 Qualifiers11Maestros of the Game 2 announced32026 GSL Tour plans announced10Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid20
StarCraft 2
General
Weekly Cups (April 6-12): herO doubles, "Villains" prevail MaNa leaves Team Liquid Oliveira Would Have Returned If EWC Continued Team Liquid Map Contest #22 - The Finalists 2026 GSL Tour plans announced
Tourneys
2026 GSL Season 1 Qualifiers Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) SEL Doubles (SC Evo Bimonthly) $5,000 WardiTV TLMC tournament - Presented by Monster Energy
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 521 Memorable Boss The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power
Brood War
General
BW General Discussion Pros React To: Tulbo in Ro.16 Group A ASL21 General Discussion [BSL22] RO32 Group Stage mca64Launcher - New Version with StarCraft: Remast
Tourneys
[BSL22] RO32 Group D - Sunday 21:00 CEST [BSL22] RO32 Group C - Saturday 21:00 CEST Korean KCM Race Survival 2026 Season 2 [ASL21] Ro16 Group B
Strategy
What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates Muta micro map competition
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Battle Aces/David Kim RTS Megathread Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine YouTube Thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Reappraising The Situation T…
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2093 users

More Computer Science help

Blogs > KiLL_ORdeR
Post a Reply
1 2 Next All
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
Last Edited: 2010-10-12 04:05:06
October 12 2010 02:34 GMT
#1
Hey all,

everyone who posted in my last blog about failing in computer science was really helpful. I ended up using the code and advice you all provided me with, and I was able to pull a 90 on my exam!

I was wondering if you could all help me out some more, as I had a few questions on my homework.

I think the general consensus on this set of problems is that I don't quite understand loops. We had a while loop question on the exam, which I nailed, but while loops are the easiest ones, and I also think I must have gotten lucky, because I can't make shit work now.

anyway, here are the questions I'm having trouble with:

Sum of Numbers
*Write a program that asks the user for a positive integer. The program should contain a loop to get the sum of all of the numbers from 1 to the number the user entered. For example, if the user enters fifty, the program should get the sum of all numbers from 1 through 50. Do not accept negative numbers.

+ Show Spoiler [Code so Far] +

#include <iostream>
using namespace std;

int main ()

{
int num, counter, sum = 0;
counter = 0;

cout << "Please enter a positive number";
cin >> num;

while (num < 0 ) {
cout << "The number you entered was negative.\n";
cout << "Please enter a positive number";
cin >> num;
}

while (counter <= num) {
sum += counter++;
}
cout << sum << endl;

return 0;
}


Fixed this one and now it is working fine.


Pennies for Pay

*Write a program that calculates how much money a person would earn if they earned one penny their first day, and then doubled their income each following day. The program should ask the user to input a number of days, and then display a table, showing each day, and then the income for that day. All values should be displayed in dollar amounts.

+ Show Spoiler [Code so Far] +

#include <iostream>
using namespace std;

int main()

{
int days;
int count = 0;

cout << "This program calculates how much a person would earn\n";
cout << "if their salary started at one penny a day, and\n";
cout << "and doubled every day\n";
cout << "Please enter the number of desired days:\n";
cin >> days;

cout << "Days Money (in Dollars)\n";
cout << "_____________________\n";
while (count <= days)
{
cout << count << "\t\t$" << (count*2) <<endl;
count++;
}
return 0;
}

This code is pretty close. I know I need to replace "(count*2)" with something that exponentiates the values by the number of days that the code has run. I tried using something along the lines of "pow(1,2)" so that each day, the value from the day before is squared, but I'm at a loss as to how to square the value from the day before. Also, everytime I've tried to use "pow," I always get an error that the variable was not included in the scope, even though I include cmath.


The Greatest and Least of These
*Write a program with a loop that lets the user enter a series of integers. The user should enter -99 to signal the end of the series. After all of the numbers have been entered, the program should display the largest and smallest numbers entered.

+ Show Spoiler +

#include <iostream>

using namespace std;

int main ()
{
int num;

cout << "Please Enter a positive number";
cin >> num;

if (num < 0){
cout << "The number you entered is negative.\n";
cout << "Please enter a positive number";
cin >> num;
}

else {
do{
cin>>num;
if(num < lowNum) {lowNum = num;}
if(num > highNum){highNum = num;}
}

while (num != -99);
}

Howitzer was awesome in providing me with code for this. I'm getting error messages that Well that all well and good, I don't fully understand it. I can see how each of the lines works, but I don't think I could replicate this if i was given a similar problem. Furthermore, I'm getting error message that say that INT_Min/MAX are not declared in this scope. Help with that please?


In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
Total_Dark
Profile Joined November 2008
United States7 Posts
Last Edited: 2010-10-12 02:57:08
October 12 2010 02:49 GMT
#2
First one is most likely because you didn't set counter to anything. Adding a simple counter =0; should fix it. Also, you need a sum = 0; at the beginning.

For the second one, pow requires double/float inputs not int so you can change the variable type. Also, the amount you have each day is given by 2^count-1 since the first day you would have 2^1-1=1, second day is 2^2-1=2 ect. So using pow and count as one of the inputs, you should be able to get it.

For the third one, do you need to keep track of all the numbers that the user inputs? If not, you can set a min and max to the first number the user inputs and then check each subsequent number to se if its smaller than the min or larger than the max and update it that way.
Macavenger
Profile Blog Joined January 2008
United States1132 Posts
Last Edited: 2010-10-12 03:05:14
October 12 2010 02:49 GMT
#3
You never initialize counter or sum for sum of numbers, which in C means it can be whatever happens to be sitting in whatever chunk of memory happens to be assigned for that variable. Initializing sum and counter to 0 should fix that. You'll also need to preincrement rather than postincrement counter the way you have it written right now. Also, dunno if you've learned them yet, but that sort of problem really begs for a for loop, not a while loop.

Should probably reuse the code to exclude negative values for the second problem; the problem statement doesn't say to but negative days don't make sense there. There are a couple ways to deal with the doubling, the simplest being to just make another variable to keep track. Unless you're dealing with extremely tight memory considerations, there's no reason you should be afraid to create an int or two.
Another note: if using a second variable to keep track of the doubling, you should probably make it an unsigned long, since int will run out of space to hold that very quickly.

I believe (without looking it up to be sure) that the constants you're referencing in 3 are called MAX_INT and MIN_INT, which would be why those are undefined errors. Were there any other problems? At a glance the solution looks fine, if inelegant. You actually don't need to create an array at all for that problem, nor more than one loop. Can you see how you would do it without those?
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
October 12 2010 02:54 GMT
#4
As for as pennies for pay is concerned, you can work out a formula to calculate the amount without using a loop.

For the last one, I am uncertain what is INT_MIN and INT_MAX. Frankly, you don't need those.

here's the pseudocode:

WHILE the user does not enter -99, DO:
save the number into the next empty slot of your array;
if this is the first number, let Max and Min equal to that number;
LOOP i from 0 to the Counter, DO:
if the current number is bigger than Max, make Max = current number;
if the current number is smaller than Min, make Min = current number;
END LOOP
END WHILE

OUTPUT Max, Min, etc.
https://twitter.com/SufficientStats
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 03:05 GMT
#5
@Total_Dark and Macanenger: Thanks guys, I can't believe I missed such simple things. Oh well, thanks a lot.

I also noticed that in the original, I wrote while (counter < num), instread of (counter <= num). just more silly mistakes.
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
TyPsi5
Profile Joined May 2010
United States204 Posts
Last Edited: 2010-10-12 03:09:45
October 12 2010 03:05 GMT
#6
To solve the pennies problem you need to realize that the doubling of the salary is an exponential function where the salary for a particular day is equal to 2 raised to the power of the day -1. ie: P(d) = 2^(n-1). This would mean on the first day your pay is 2^0 or 1cent. The second day your pay is 2^1 or 2 cents. Third day: 2^2 or 4 cents. Fourth: 2^3 = 8. Nth: 2^(n-1).
To do this: you use a simple for loop.
for (int i=1; i<=days; i++)
{
cout<<"Day: "<<i<<"\t"<<"Salary: $"<<pow(2, i-1)/100<<\n";
}
also, for this you need to make sure you #include <math.h>
This should be the only tricky part of this problem. Also I didn't test it, so if you get an error lemme know.

For the second problem you will use a do while loop. The condition of this loop will be in pseudo code: "while the user input does not have the value of -99". You want a do while loop because you want it to run at least once. To do this you would do:

do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.


Macavenger
Profile Blog Joined January 2008
United States1132 Posts
October 12 2010 03:06 GMT
#7
On October 12 2010 12:05 KiLL_ORdeR wrote:
I also noticed that in the original, I wrote while (counter < num), instread of (counter <= num). just more silly mistakes.

Well, it can still work that way (that's why I said pre instead of postincrement), but yeah, changing it to <= is fine too.
imDerek
Profile Blog Joined August 2007
United States1944 Posts
October 12 2010 03:26 GMT
#8
u will need to #include <climits> for your last program to get the definition of INT_MIN/MAX
Least favorite progamers: Leta, Zero, Mind, Shine, free, really <-- newly added
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 03:26 GMT
#9
On October 12 2010 12:06 Macavenger wrote:
Show nested quote +
On October 12 2010 12:05 KiLL_ORdeR wrote:
I also noticed that in the original, I wrote while (counter < num), instread of (counter <= num). just more silly mistakes.

Well, it can still work that way (that's why I said pre instead of postincrement), but yeah, changing it to <= is fine too.

Ya, the program still runs, just not with the correct output. For example, if I wanted to do all of the numbers up to 3, if I had (counter < num) it will only add 1 and 2. But ya, just minor details, not very important for the entire problem.

On October 12 2010 12:05 TyPsi5 wrote:
To solve the pennies problem you need to realize that the doubling of the salary is an exponential function where the salary for a particular day is equal to 2 raised to the power of the day -1. ie: P(d) = 2^(n-1). This would mean on the first day your pay is 2^0 or 1cent. The second day your pay is 2^1 or 2 cents. Third day: 2^2 or 4 cents. Fourth: 2^3 = 8. Nth: 2^(n-1).
To do this: you use a simple for loop.
for (int i=1; i<=days; i++)
{
cout<<"Day: "<<i<<"\t"<<"Salary: $"<<pow(2, i-1)/100<<\n";
}
also, for this you need to make sure you #include <math.h>
This should be the only tricky part of this problem. Also I didn't test it, so if you get an error lemme know.

For the second problem you will use a do while loop. The condition of this loop will be in pseudo code: "while the user input does not have the value of -99". You want a do while loop because you want it to run at least once. To do this you would do:

do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.




I thought this at first, but I was looking at the equation, and if I use an exponential equation, I'm one value off every day.

What i'm saying is, on day 0, she should have 0 pennies, because she hasn't started working yet. on day 1, she has 1 penny, which doubles to 2 on day 2, which becomes 4 on day 3, 8 on day 4, and so on. Am I right or am I over-thinking this?
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 03:29 GMT
#10
+ Show Spoiler +
On October 12 2010 12:26 KiLL_ORdeR wrote:
I thought this at first, but I was looking at the equation, and if I use an exponential equation, I'm one value off every day.

What i'm saying is, on day 0, she should have 0 pennies, because she hasn't started working yet. on day 1, she has 1 penny, which doubles to 2 on day 2, which becomes 4 on day 3, 8 on day 4, and so on. Am I right or am I over-thinking this?


Wow holy shit disregard that, I didn't read carefully enough obviously.
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
TyPsi5
Profile Joined May 2010
United States204 Posts
October 12 2010 03:30 GMT
#11
No you are correct.
Day.....Salary......equation
1 1 2^0
2 2 2^1
3 4 2^2
4 8 2^3
n 2^(n-1)
you can see the equation for the salary for a specific day is equal to 2 raised to power of the day minus 1.
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 03:35 GMT
#12
On October 12 2010 12:05 TyPsi5 wrote:
To solve the pennies problem you need to realize that the doubling of the salary is an exponential function where the salary for a particular day is equal to 2 raised to the power of the day -1. ie: P(d) = 2^(n-1). This would mean on the first day your pay is 2^0 or 1cent. The second day your pay is 2^1 or 2 cents. Third day: 2^2 or 4 cents. Fourth: 2^3 = 8. Nth: 2^(n-1).
To do this: you use a simple for loop.
for (int i=1; i<=days; i++)
{
cout<<"Day: "<<i<<"\t"<<"Salary: $"<<pow(2, i-1)/100<<\n";
}
also, for this you need to make sure you #include <math.h>
This should be the only tricky part of this problem. Also I didn't test it, so if you get an error lemme know.

For the second problem you will use a do while loop. The condition of this loop will be in pseudo code: "while the user input does not have the value of -99". You want a do while loop because you want it to run at least once. To do this you would do:

do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.



So the pennies one now works perfectly. That's crazy man. I don't even think I have to reformat it to make a table. And now I also know why the "pow" function wqasn't working, I needed to use <math.h> instead of <cmath>.
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
Macavenger
Profile Blog Joined January 2008
United States1132 Posts
October 12 2010 03:42 GMT
#13
On October 12 2010 12:26 KiLL_ORdeR wrote:
Ya, the program still runs, just not with the correct output. For example, if I wanted to do all of the numbers up to 3, if I had (counter < num) it will only add 1 and 2. But ya, just minor details, not very important for the entire problem.

Right, but what I'm saying is that
+ Show Spoiler +
while (counter < num) {
sum += ++counter;
}

produces the same answer as
+ Show Spoiler +
while (counter <= num) {
sum += counter++;
}

because counter is incremented after the test before the addition, instead of after the addition.

On a related note, it's also worth noting that using pre or postincrement in the middle of a statement as you're doing here, while perfectly correct and frequently useful, can also lead to code that is very difficult to read and thus often discouraged. May be the source of the misunderstanding here.
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
Last Edited: 2010-10-12 03:50:30
October 12 2010 03:42 GMT
#14
On October 12 2010 12:05 TyPsi5 wrote:
do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.



How do I properly assign lowNum and highNum to be the lowest and highest numbers?
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
Spazer
Profile Blog Joined March 2009
Canada8033 Posts
October 12 2010 03:47 GMT
#15
do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.


Does this code work? It looks like it'd take the -99 to be an actual input since usrInput is evaluated at the end of the loop.
Liquipedia
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 03:48 GMT
#16
On October 12 2010 12:42 Macavenger wrote:
Show nested quote +
On October 12 2010 12:26 KiLL_ORdeR wrote:
Ya, the program still runs, just not with the correct output. For example, if I wanted to do all of the numbers up to 3, if I had (counter < num) it will only add 1 and 2. But ya, just minor details, not very important for the entire problem.

Right, but what I'm saying is that
+ Show Spoiler +
while (counter < num) {
sum += ++counter;
}

produces the same answer as
+ Show Spoiler +
while (counter <= num) {
sum += counter++;
}

because counter is incremented after the test before the addition, instead of after the addition.

On a related note, it's also worth noting that using pre or postincrement in the middle of a statement as you're doing here, while perfectly correct and frequently useful, can also lead to code that is very difficult to read and thus often discouraged. May be the source of the misunderstanding here.

Oh ok I understand what you're sayiong. Thanks for clarifying and a big thanks for the help.
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
TyPsi5
Profile Joined May 2010
United States204 Posts
October 12 2010 03:55 GMT
#17
On October 12 2010 12:42 KiLL_ORdeR wrote:
Show nested quote +
On October 12 2010 12:05 TyPsi5 wrote:
do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.



How do I properly assign lowNum and highNum to be the lowest and highest numbers?


It was my understanding that the lowNum and highNum were to be the lowest and highest numbers entered by the user resepectively.

In which case, it need not be changed, as long as lowNum and highNum are initialized to proper values. ie a really high number for the lowNum and a really low number for highNum.

TyPsi5
Profile Joined May 2010
United States204 Posts
October 12 2010 03:59 GMT
#18
On October 12 2010 12:47 Spazer wrote:
do{
cin>>usrInput;
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);

don't forget the ending semicolon.


Does this code work? It looks like it'd take the -99 to be an actual input since usrInput is evaluated at the end of the loop.


I haven't tested it, but its a fairly straightforward do-while loop. The main difference between a do-while and a while loop is that in a do-while loop the "do" code is run at least once before the condition is checked. In this particular loop, it prompts the user for input, and does 2 conditional statements, before finally checking to see if the value stored in usrInput does not have a value of -99.

In fact, the code should probably be this:

do{
cin>>usrInput;
if(usrInput == -99){break;}
if(usrInput<lowNum) {lowNum = usrInput;}
if(usrInput>highNum){highNum = usrInput;}
}
while (usrInput != -99);
KiLL_ORdeR
Profile Blog Joined June 2009
United States1518 Posts
October 12 2010 04:04 GMT
#19
I'm including the code I have for last problem both here and in the OP.

When I try to compile the code, it stops compiling when it hits the usrInput lines.

also not I changed usrInput to num just to make it more concise.

+ Show Spoiler +

#include <iostream>

using namespace std;

int main ()
{
int num;

cout << "Please Enter a positive number";
cin >> num;

if (num < 0){
cout << "The number you entered is negative.\n";
cout << "Please enter a positive number";
cin >> num;
}

else {
do{
cin>>num;
if(num < lowNum) {lowNum = num;}
if(num > highNum){highNum = num;}
}

while (num != -99);
}
In order to move forward, we must rid ourselves of that which holds us back. Check out my stream and give me tips! twitch.tv/intotheskyy
Spazer
Profile Blog Joined March 2009
Canada8033 Posts
October 12 2010 04:11 GMT
#20
Wait, does one number need to be positive? Or do they all need to be positive? Because
if (num < 0)

is only running once. I don't think you need it in there since it's not in the question description. =/

Also, if you're gonna use the do-while loop, add the break statement mentioned in one of the posts above.
Liquipedia
1 2 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 2h 8m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech137
CosmosSc2 26
StarCraft: Brood War
Britney 15487
Calm 2633
ggaemo 227
firebathero 132
Dewaltoss 121
SilentControl 11
Dota 2
capcasts113
League of Legends
Reynor92
Counter-Strike
byalli298
Super Smash Bros
PPMD45
Heroes of the Storm
Liquid`Hasu384
Other Games
summit1g12243
tarik_tv5671
FrodaN653
shahzam424
C9.Mang0248
ZombieGrub55
QueenE45
Trikslyr34
ViBE17
Organizations
Other Games
BasetradeTV417
Counter-Strike
PGL107
StarCraft 2
angryscii 75
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 22 non-featured ]
StarCraft 2
• musti20045 34
• RyuSc2 34
• davetesta34
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• HerbMon 37
• Azhi_Dahaki27
• RayReign 19
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21276
• WagamamaTV491
League of Legends
• Doublelift3371
Other Games
• imaqtpie1395
• Scarra792
• Shiphtur142
Upcoming Events
Replay Cast
2h 8m
Escore
12h 8m
WardiTV Map Contest Tou…
13h 8m
OSC
17h 8m
Big Brain Bouts
18h 8m
MaNa vs goblin
Scarlett vs Spirit
Serral vs herO
Korean StarCraft League
1d 5h
CranKy Ducklings
1d 12h
WardiTV Map Contest Tou…
1d 13h
IPSL
1d 18h
WolFix vs nOmaD
dxtr13 vs Razz
BSL
1d 21h
UltrA vs KwarK
Gosudark vs cavapoo
dxtr13 vs HBO
Doodle vs Razz
[ Show More ]
CranKy Ducklings
2 days
Sparkling Tuna Cup
2 days
WardiTV Map Contest Tou…
2 days
Ladder Legends
2 days
BSL
2 days
StRyKeR vs rasowy
Artosis vs Aether
JDConan vs OyAji
Hawk vs izu
IPSL
2 days
JDConan vs TBD
Aegong vs rasowy
Replay Cast
3 days
Wardi Open
3 days
Afreeca Starleague
3 days
Bisu vs Ample
Jaedong vs Flash
Monday Night Weeklies
3 days
RSL Revival
4 days
Afreeca Starleague
4 days
Barracks vs Leta
Royal vs Light
WardiTV Map Contest Tou…
4 days
RSL Revival
5 days
Replay Cast
6 days
The PondCast
6 days
WardiTV Map Contest Tou…
6 days
Liquipedia Results

Completed

Proleague 2026-04-15
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
Nations Cup 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026

Upcoming

Escore Tournament S2: W3
Escore Tournament S2: W4
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.