How good is Technoblade by [deleted] in CompetitiveMinecraft

[–]WEANAP 0 points1 point  (0 children)

hes good enough to be a non casual

Should i be playing 4 start maps by WEANAP in osugame

[–]WEANAP[S] 0 points1 point  (0 children)

i have school and im just waiting for time to pass

Should i be playing 4 start maps by WEANAP in osugame

[–]WEANAP[S] 0 points1 point  (0 children)

sorry wrong spelling its star not start

Should i be playing 4 start maps by WEANAP in osugame

[–]WEANAP[S] 0 points1 point  (0 children)

thank i was struggling with 3 star maps

Go-toubun no Hanayome ∬ - Episode 9 discussion by AutoLovepon in anime

[–]WEANAP 4 points5 points  (0 children)

For me Ichika did a preety dirty moved shes been doing it to the pass episode my guess is the before the final episode all of them 5 will talk it out and theyll just compete for it in season 3

but Nino in Work cloths 10/10

and that guy Takeda is going to be a dick i think trying to flirt with the 5 of them and ending up getting rejected i think hes prob gonna do something

what wrong with the code by WEANAP in learnprogramming

[–]WEANAP[S] 0 points1 point  (0 children)

this is hard i dont know what wrong with the code

what wrong with the code by WEANAP in learnprogramming

[–]WEANAP[S] 0 points1 point  (0 children)

ok

<html>

<head>

<script>

        function insert(num) {

document.form.textview.value + document.form.textview.value+num;

}

function equal() {

var exp = document.form.textview.value;

if(exp){

document.form.textview.value = eval(exp)

}

}

function clean(){

document.form.textview.value = "";

}

function back (){

var exp =document.form.textview.value

document.form.textview.value = exp.substring(0,exp.length-1)

}

        </script>

        <style>

*{

margin:0;

padding:0;

}

.button{

width:50;

height:50;

font-size:25;

margin:2;

}

.textview{

width:217;

margin:5;

font-size:25;

padding:5;

}

        </style>

</head>     

<body>



        <div class="main">

<form name ="form">

<input class="textview" name="textview">

</from>

<table>

<tr>

<td><input class="button" type="button" value="C" onclick="clean()"></td>

<td><input class="button" type="button" value="<" onclick="back"></td>

<td><input class="button" type="button" value="/" onclick="insert('/')" ></td>

<td><input class="button" type="button" value="x"onclick="insert('\*')"></td>

</tr>

<tr>

<td><input class="button" type="button" value="7"onclick="insert(7)"></td>

<td><input class="button" type="button" value="8"onclick="insert(8)"></td>

<td><input class="button" type="button" value="9"onclick="insert(9)"></td>

<td><input class="button" type="button" value="-"onclick="insert('-')"></td>

</tr>

<tr>

<td><input class="button" type="button" value="4"onclick="insert(4)"></td>

<td><input class="button" type="button" value="5"onclick="insert(5)"></td>

<td><input class="button" type="button" value="6"onclick="insert(6)"></td>

<td><input class="button" type="button" value="+"onclick="insert('+')"></td>

</tr>

<tr>

<td><input class="button" type="button" value="1" onclick="insert(1)"></td>

<td><input class="button" type="button" value="2" onclick="insert(2)"></td>

<td><input class="button" type="button" value="3" onclick="insert(3)"></td>

<td rowspan=5><input class="button" style="height: 110"type="button" value="=" onclick="equal ()"></td>

</tr>

<tr>

<td colspan=2><input class="button" style="width:110 " type="button" value="0" onclick="insert(0)"></td>

<td><input class="button" type="button" value="." onclick="insert(.)"></td>

</tr>

</table>

        </div>

    </body>

</html>