User:BulbaBot/Archive
From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
#include <iostream>
using namespace std;
int main(){
int archiveno = 1;
int archives[archiveno];
cout << "Welcome to BulbaBot's talk page.\n";
//enter archive dates
archives[0] = U-1194463440 to U-1269050280;
cout << "Previous archives are below\n" << archives;
//get talk page size
int talksize;
cout << "Please enter talk page size in bytes.\n";
cin >> talksize;
//talksize should be less than 64 kilobytes
int talkkilo = talksize / 1024;
int talkperc = talkkilo / 64 * 100;
cout << "Talk page size is " << talkkilo << " kilobytes.";
if(talkkilo < 65) cout << "Percentage of talk page taken: " << talkperc;
else cout << "ERROR: OVERFLOW. PLEASE ARCHIVE TALK PAGE.";
}