Jump to content

Roohansama

Admins
  • Content Count

    830
  • Joined

  • Last visited

  • Days Won

    38

Posts posted by Roohansama

  1.  

    bU9FIFA.jpg

     

     

    placed #2nd after many rounds with stelthii .... but he crashed unfortunately when we were last squad left ..

    sorry for crappy pic, didn't have any tools to take screenshot ingame

    nice.

    i won a game some days ago.

     

    JXVyuX6.png

     

    With 0 kills xD lol

    i had the best random teammates in that game.they respawned me 3 to 4 times ,coming back outside the zone to respawn me and then giving me half of their loot .

    otherwise how could a noob like me ,make it to the end...xD

    Mrozy likes this
  2.  

    javascript ftw

     

    to use this code, copy it, press ctrl+shift+j,paste it.

    love you 

    ===========================

    var arr = [1,2,3,4,5,6,7,8,9];
     
    for(let x =0;x<arr.length;x++){
     
     console.log(arr[x] + " number of humans loves nN and Substanz");}
    ===========================

     

    I dont know whats that ^^,,, i think i dont have the compiler for that ^^

  3. I'm not sure I understand your explanation. You created a program that multiplies the number "i" by consecutive natural numbers from 0 to b.

    When I type for variables i=2, b=10 I'm getting: 2*0=0,2*1=2, ... , 2*10=20. What we wanna do is to multiply 2 by successive numbers, omitting 2 multiples every time, so we get: 2*0=0, 2*3=6, 2*6=12, ... , 2*b.

     

     

    #include<iostream>

    using namespace std;

    main()

    {

    int b;

    cin >> b;

    for (int a=0; a <= b; a+=3)

    {

    cout << 2 << "*" << a << "=" << 2*a << endl;

    }

    return 0;

    }

     

     

    Thank you mrozy... ^^

    i was righting "a++3 " instead of "a+=3" thats all...

  4. HI guys,

    i hope everyone is doing fine.

    so we are currently studying c++ basics in university.

    today we did a bit of "for loop".

    i wrote a multiplication table of 2.

     

     

    #include<iostream>

    #include<cstdlib>
    using namespace std;
    int main()
    {
    int i, b;
    cin >> i;
    cin >> b;
    for (int a =0; a <= b; a++)
    {
    cout << i << "*" << a << "=" << i*a << endl;
     
    }
    system("pause");
    }

    can anyone write the table of 2 till the value of "b" but with skipping 2 numbers, like below for the multiplication table of "2"
    2 one times 2 then, (after skipping 2 numbers) 2 four times 8..
     
    P.S: i know my explanation is the worst. 
    Ramdallsn, Mrozy and Substanz like this
  5. Guys never mind i figured it .

    i closed origin and started the game from the desktop ,it opened origin again with a popup " an update is required to play the game"

    so basically it will download the whole game then the update and then i will be able to play..

  6. Hi guys,

    funny how most of the topics on the first page of pc mutual help are from me xD.

    Today i have an other problem.

    i started downloading apex legends yesterday,it said that it was playable at 39%, i waited for the download to reach 39% and then i started the game played 2 matches then shut down my pc, today i resume the download and hit the play button but the game is not starting..

    :( now i will have to wait for the complete download i think...

×
×
  • Create New...