Discussions Q&R
Element display value
 0 Vote
 2 Réponsesupdated course
 3 Votes
 1 Réponse
what have i to do, if i want that the program always writes for example :
0+1
1+2 
3+3
6+4
10+5
15+6 
... 
because now it just writes 
1
3
6
10
15
...
and maybe if it works, can i make then
0+1=1
1+2=3
3+3=6
6+4=10
#include <iostream>
using namespace std;
int main(){
int i;
int sum = 0;
for (i = 1; i <= 100; i++){
   
   
    sum = sum+i;
    
    
    cout<<sum<<endl;
    
}
cout<<sum;
    return 0;
}
 1 Vote
 5 RéponsesNeed help about AI !
 1 Vote
 2 Réponsesif i download the programs for c++ on my pc ( codebuilds and the compiler ) and i want to write a program in my package ( workspace ) i create a new file and write smthing beginning 
#include <iostream>
using namespace std;
int main ()
{ 
...
}
and i want to run it, it always runs this first program : Hello World. and not my written program how can i run just my written program ?
have i maybe to write anything else as
 int main () {} ?
 0 Vote
 16 RéponsesHow to ..?
 0 Vote
 1 RéponseAujourd'hui en vedette
Remove
 0 Votes
I need help to solve this
 0 Votes
Project
 0 Votes
Engineer Cloud
 0 Votes
Lua?
 1 Votes