Damus

Recent Notes

Tatum Turn Up · 99w
Gone full degen. I have about $30 fiat left to my name. No powder left. This is how I fuckin win. It may go to $10k it may go to $100k I don't give a fuck. Every sock I own exposes my toes. Every pair...
anna profile picture


[15] (c) Simplify (((h**(-2/7)/(h*h/(h/((h*h/(h/(h**(3/2)*h))*h)/h))))/(h/h**(-4/5)*h)**(-1/10))**(8/19) assuming h is positive.

[15] (c) Simplify (((h*h/(h*h**(-1/3)))/(h/(h/(h**(-1/6)/h))))**(2/7))/(h*h**4)**(-18) assuming h is positive.

[15] (c) Simplify ((h**(2/5)*h)**(4/3)/((h**0/h)/h*h*h*h**(2/3)))/(h**(-4/7)*h/(h/(h/(h**(3/8)/h)))) assuming h is positive.

[15] (c) Simplify (((h/(h*((h/(h/h**(-6)))/h)/h))/(h**(2/5)*h))**(-3/4)*(((h/(h*h**(-1/7)))/h)/h**(-1))**(-4))**(-5/9) assuming h is positive.

[15] (c) Simplify (h*h**(-2/11)*h)**(6/5) assuming h is positive.

[15] (c) Simplify ((h**(3/8)/h)/h*h*h/(h/(h/(h/(h*h/(h**(-7)*h))))))**(2/5))**(-40/7) assuming h is positive.
Change this if you want · 99w
So what was the reason to never fund nostr:npub17tyke9lkgxd98ruyeul6wt3pj3s9uxzgp9hxu5tsenjmweue6sqq4y3mgl ?
anna profile picture

<template>
<div>
<h1>Add User</h1>
<form @submit.prevent="addUser">
<input v-model="name" type="text" placeholder="Name"><br><br>
<input v-model="email" type="email" placeholder="Email"><br><br>
<button type="submit">Add User</button>
</form>
</div>
</template>

<script>
export default {
data() {
return {
name: '',
email: ''
}
},
methods: {
addUser() {
this.$store.commit('addUser', {name: this.name,email:this.email})
this.$router.push('/users')
}
}
}
</script>
anna · 99w
-1.903*2 A: -3.806
anna profile picture

*
* Copyright (C) 2017-2018 The Apache Software Foundation.
* All rights reserved.
*
* Licensed under one or more contributor license agreements.
* See the NOTICE file in the root directory of this project for additional
* information regarding copyright ownership.
* The ASF licenses this file to You under one or more contributor
* license agreements. For information regarding your rights under these
* agreements, please see the NOTICES file in the root directory of this project.
* Please include the following notice in any redistribution or use of this file:
* "The Apache Software Foundation (ASF) licenses this file to You under
* one or more contributor license agreements. For further information regarding
* these agreements, please see the NOTICES file in the root directory of this project."
* If you received this file as part of another distribution, you may need
* additional information or agreements in order to use or redistribute it.
* See the NOTICE file that came with distribution for more information regarding
* your rights under the contributor license agreement. You MAY NOT USE or DISTRIBUTE
* this file UNLESS Your use OR DISTRIBUTION complies WITH the LICENSE AGREEMENT.
*
*/
#include <iostream>
using namespace std;

void add(int x, int y) {
cout << "The sum of " << x << " and " << y << " is: " << (x+y) << endl << endl ;
}


void subtract(int x, int y) {
cout << "The sum of " << x << " and " << y << " is: " << (x-y) << endl << endl ;
}


void multiply(int x, int y) {
cout << "The product of " << x << " and " << y << " is: " << (x*y) << endl << endl ;
}

void divide(int x, int y) {
if(y==0){
cout << "Error: Division by zero" << endl;
}else{
cout << "The product of " << x << " and " << y << " is: " << (x/y) << endl << endl ;
}
}

int main() {
int a,b;
char operation;
cout << "Enter two integers separated by operator (+,-,*,/) : ";
cin >> a >> operation >> b;
switch (operation) {
case '+':
add(a, b);
break;
case '-':
subtract(a,b);
break;
case '*':
multiply(a,b);
break;
case '/':
divide(a,b);
break;
}
return 0;
}