[ create a new paste ] login | about

axell13

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages: C++, Python, Java, C#
About:

Saved pastes by axell13:

C++, pasted on Dec 30:
1
2
3
4
5
using System;
using System.Threading.Tasks;

class Program
{
...
view (34 lines)
C, pasted on Dec 27:
1
2
3
4
5
//OtherThreadCounting
using System;
using System.Threading.Tasks;

namespace CSYahoo
...
view (28 lines)
C, pasted on Dec 26:
1
2
3
4
//Ponteiro Simples
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
view (26 lines)
C, pasted on Dec 22:
1
2
3
4
5
#include <stdio.h>

int main(){
	int a[5] = { 110, 2, 99, 99, 106 },
		b[7] = { 2, 7, 8, 9, 110, 99 },
...
view (54 lines, 3 lines of output)
C, pasted on Dec 16:
1
2
3
4
//OrganizarVetor
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
view (38 lines)
C++, pasted on Dec 15:
1
2
3
4
//NoAleatorioRepetido
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
view (29 lines, 1 line of output)
C++, pasted on Dec 14:
1
2
3
4
5
#include <Windows.h>
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <string>
...
view (199 lines)
C++, pasted on Dec 9:
1
2
3
4
5
//Cassino

#include <Windows.h>
#include <iostream>
#include <cstdlib>
...
view (88 lines)
C++, pasted on Nov 29:
1
2
3
4
5
#include <stdio.h>
#include <Windows.h>
#include <string>
#include <iostream>
using namespace std;
...
view (60 lines)
C++, pasted on Oct 29:
1
2
3
4
#include <iostream>
using namespace std;
#define m 3
#define n 3
...
view (44 lines, 10 lines of output)
C++, pasted on Oct 29:
1
2
3
4
#include <iostream>
using namespace std;
#define m 3
#define n 3
...
view (44 lines, 3 lines of output)
C, pasted on Oct 29:
1
2
3
4
5
#include <stdio.h>
#include <string.h>
#define t 80

int main(){
...
view (30 lines, 2 lines of output)
C, pasted on Oct 29:
1
2
3
4
5
#include <stdio.h>
#define t 5

int main(){
	int n[t], i, mn = 100; //Pra Fazer Apenas Testes Vou Usar O Valor 100
...
view (36 lines, 2 lines of output)
C++, pasted on Oct 29:
1
2
3
4
5
#include <iostream>
#include <string>
using namespace std;

int main(){
...
view (82 lines, 3 lines of output)
C, pasted on Oct 29:
1
2
3
4
5
import java.util.Scanner;

public class JavaYahoo {
    
    public static int verificaPrimo(Integer n){
...
view (48 lines)
C, pasted on Oct 26:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(){
...
view (40 lines, 1 line of output)
C, pasted on Oct 24:
1
2
3
4
5
#include <stdio.h>
#include <stdlib.h>

int main(){
	int option, i;
...
view (86 lines, 2829 lines of output)
C++, pasted on Oct 11:
1
2
3
/* Canto Superior Direito -> Solution Explorer -> Seu Projeto -> Properties -> Linker -> Advanced -> Entry Point -> Colocar "main"

Ainda No Linker -> System -> Windows(/SUBSYSTEM:WINDOWS) */
...
view (18 lines)
C++, pasted on Oct 2:
1
2
3
4
5
#include <iostream>
#include <math.h>
using namespace std;

int main(){
...
view (30 lines, 2 lines of output)
C++, pasted on Oct 2:
1
2
3
4
5
#include <iostream>

using namespace std;

int main(){
...
view (35 lines, 4 lines of output)