Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <ctime> // Biblioteca para Time();
- #include <cstdlib> // Biblioteca para SRand();
- #include <windows.h> // Biblioteca para titolos de console;
- #include <fstream>
- using namespace std;
- template < typename t>
- // Criando funcao templete sobrecarregadas;
- t soma(t i) // se colocar ponto e virgula ocorre um erro de sintaxe;
- {
- t cal1 = 0;
- t cal2 = 0;
- if ( cal1< i || cal2 <i){
- cal1 = i;
- cal2 = i;
- return cal1+cal2; // Ficou Bugado acredito que esta pegando o buffer da varaivel;
- }
- }
- // fim da primeira funcao templete;
- int main(){
- SetConsoleTitle("Jambix64");
- int var1;
- unsigned int x;
- // srand(); // Para a pessoa disparar a contagem nao precsa do [TIME()]
- cout<<"Quer fazer alguma soma ?,Digite o valor"<<endl;
- cin>>var1;
- cout<<"Digite o Seundo valor para ser somado"<<endl;
- cin>>var1;
- cout<< soma(var1) <<endl;
- cout<<endl;
- cout<<"Quer fazer UM BACKP ? Digite 1"<<endl;
- cin>>x;
- if(x == 1){
- ofstream backp("text");
- for (int i =0;i<soma(var1);){
- i++; // Encrementando um
- cout<<"%"<<i<<endl;
- system("color 1");
- system("color E");
- backp <<"%"<<i<<endl;
- }
- }
- system("pause");
- return 0;
- }
Add Comment
Please, Sign In to add comment