Showing posts with label or. Show all posts
Showing posts with label or. Show all posts
Friday, April 21, 2017
Download Spiderman Friend or Foe
Review:
It was after a particularly tedious battle, somewhere in the first stage of the first level of Spider-Man: Friend or Foe, when poor Spidey himself summed up his own videogame experience better than we ever could.
"Do you think this ruins the fun, with us always winning?" the animated Webcrawler asked no one in particular as we stared at the screen in glazed-over boredom.
Yes. Yes it does.
The action-adventure brawler, developed by Next Level Games and published by Activision, started out with a unique idea - that Spidey would battle a horde of mysterious baddies with the help of his sworn Marvel-universe enemies. But what begins as an interesting premise turns out to be the most ordinary of gaming experiences, and Spider-Man: Friend or Foe very early on proves itself to be its own worst enemy.
At the beginning of the game, Spidey is drafted by Col. Nick Fury of S.H.I.E.L.D and brought aboard a "helicarrier" for a quick mission briefing. Someone, it turns out, is using symbiote-soaked meteorite shards to control the minds of supervillains, who are, in turn, wreaking all manner of havoc. Itll be Spider-Mans job to defeat them, recruit them, and fight along side them to find the mastermind.
But despite the games glossy coating and promise of a lively team-based brawling experience, it becomes clear very early on that Spider-Man: Friend or Foe is little more than a mindless churn.
There are three types of basic enemies: small, medium and large. Throughout the game, they behave basically the same, with small differences as the levels progress. From level-to-level, their look changes to match the environment, but - for the most part - they dont seem to get much smarter, aggressive or powerful. And theres no difficulty setting, so youre stuck with the level of challenge the game offers, which is shockingly little.
And despite your travels to exotic locales like Nepal, Tokyo and Cairo, the entire game feels the same. Its predictable, uninspired and plain.
Even the structure of each level is exactly the same. It works like this: Go to a location. Your path forward is blocked. Enemies spawn. Kill them. Your way becomes clear. Move forward. Cross a bridge. Your path forward is blocked. And on and on and on.
The good news is, if you like walking across bridges, then Spider-Man: Friend or Foe is the game for you. Whether we were in Tokyo, Cairo, Nepal, Transylvania, or a tropical island, we killed enemies to make bridges appear.
Youre also asked to collect "secrets" throughout the game to unlock multiplayer arenas, but we found most of them simply by walking where the game told us to. But even walking/jumping around in the game can be a challenge due to the fact that there is no camera control and your character sometimes disappears behind blind walls or walks through textures. With so many millions of bridges to cross, it can be a problem.
Speaking of multiplayer, Spider-Man: Friend or Foe offers little in this department. Theres no online multiplayer (or co-op for that matter) and the local battle arena mode is limited at best.
But in an apparent effort to keep things interesting, Next Level built in a sort of character upgrade system, which succeeds somewhat, but is seriously flawed. Heres why.
Screen:
Requirements:
CPU: 1,6 GHz
RAM: 256 MB
Video Card: 128 MB
Inforelease:
1 - Unzip files 7z
2 - Mount or burn .iso.
3 - Install and use crack from dvd/dir and copy it to game/dir
4 - Enjoy
5 - Its English ofc
Download:
Fileserve:
Code: |
http://www.fileserve.com/file/W83wN7Z http://www.fileserve.com/file/5PZmUdQ http://www.fileserve.com/file/9pGV5e8 http://www.fileserve.com/file/SbveRYG http://www.fileserve.com/file/JeK7fSb http://www.fileserve.com/file/3tadmNc http://www.fileserve.com/file/ADqkcZ4 http://www.fileserve.com/file/qawtNuH http://www.fileserve.com/file/ZJ8mpQz http://www.fileserve.com/file/APz49BU http://www.fileserve.com/file/GDK2cSf |
Sunday, February 15, 2015
Java program to find whether a number is armstrong or not

class Armstrong
{
public static void main(String...s)
{
int m,n,i,j=0;
n=Integer.parseInt(s[0]);
m=n;
while(n!=0)
{
i=n%10;
j+=(i*i*i);
n/=10;
}
if(j==m)
System.out.println("
Number is armstrong");
else
System.out.println("
Number is not armstrong");
}
}
Saturday, February 14, 2015
MS Office 2007 Full version with serial key or torrent

Microsoft Office 2007 (officially called 2007 Microsoft Office System) is a Windows version of the Microsoft Office System, Microsoft’s productivity suite. Formerly known as Office 12 in the initial stages of its beta cycle, it was released to volume license customers on November 30, 2006 and made available to retail customers on January 30, 2007. These are, respectively, the same dates Windows Vista was released to volume licensing and retail customers. Office 2007 contains a number of new features, the most notable of which is the entirely new graphical user interface called the Fluent User Interface (initially referred to as the Ribbon User Interface), replacing the menus and toolbars – which have been the cornerstone of Office since its inception – with a tabbed toolbar, known as the Ribbon. Office 2007 requires Windows XP with Service Pack 2 or higher, Windows Server 2003 with Service Pack 1 or higher, Windows Vista or Windows 7. Office 2007 is the last version of Microsoft Office which is officially supported on Windows XP Professional x64 Edition.
The ‘Ribbon User Interface’ is a task-oriented Graphical User Interface (GUI). It features a central menu button, widely known as the ‘Office Button’. The Ribbon Interface has been improved in Microsoft Office 2010.
Office 2007 also includes new applications and server-side tools. Chief among these is Groove, a collaboration and communication suite for smaller businesses, which was originally developed by Groove Networks before being acquired by Microsoft in 2005. Also included is Office SharePoint Server 2007, a major revision to the server platform for Office applications, which supports “Excel Services”, a client-server architecture for supporting Excel workbooks that are shared in real time between multiple machines, and are also viewable and editable through a web page.
Microsoft FrontPage has been removed from the Office suite entirely. It has been replaced by Microsoft Office SharePoint Designer, which is aimed towards development of SharePoint portals. Its designer-oriented counterpart Microsoft Expression Web is targeted for general web development. However, neither application has been included in Office 2007.
Speech recognition and handwriting recognition are now part of Windows Vista. Speech and ink components have been removed from Office 2007. Handwriting and speech recognition work with Office 2007 only on Windows Vista or Windows XP Tablet PC Edition. However, XP users can use an earlier version of Office to use speech recognition.
Screen Shots: Click on the image to view large screen
![]() | ![]() | ![]() |
Download
click to begin
700 MB
Serial Keys
VB48G-H6VK9-WJ93D-9R6RM-VP7GT
HCFPT-K86VV-DCKH3-87CCR-FM6HW
Password: 4hthebest.blogspot.com
I hope you like it......!
Wednesday, February 11, 2015
C Program for Addition and Multiplication of Polynomial Using Arrays or Linked List
Polynomial addition, multiplication (8th degree polynomials) using arrays
#include<math.h>
#include<stdio.h>
#include<conio.h>
#define MAX 17
void init(int p[]);
void read(int p[]);
void print(int p[]);
void add(int p1[],int p2[],int p3[]);
void multiply(int p1[],int p2[],int p3[]);
/*Polynomial is stored in an array, p[i] gives coefficient of x^i .
a polynomial 3x^2 + 12x^4 will be represented as (0,0,3,0,12,0,0,....)
*/
void main()
{
int p1[MAX],p2[MAX],p3[MAX];
int option;
do
{
printf("
1 : create 1st polynomial");
printf("
2 : create 2nd polynomial");
printf("
3 : Add polynomials");
printf("
4 : Multiply polynomials");
printf("
5 : Quit");
printf("
Enter your choice :");
scanf("%d",&option);
switch(option)
{
case 1:read(p1);break;
case 2:read(p2);break;
case 3:add(p1,p2,p3);
printf("
1st polynomial -> ");
print(p1);
printf("
2nd polynomial -> ");
print(p2);
printf("
Sum = ");
print(p3);
break;
case 4:multiply(p1,p2,p3);
printf("
1st polynomial -> ");
print(p1);
printf("
2nd polynomial -> ");
print(p2);
printf("
Product = ");
print(p3);
break;
}
}while(option!=5);
}
void read(int p[])
{
int n, i, power,coeff;
init(p);
printf("
Enter number of terms :");
scanf("%d",&n);
/* read n terms */
for (i=0;i<n;i++)
{ printf("
enter a term(power coeff.)");
scanf("%d%d",&power,&coeff);
p[power]=coeff;
}
}
void print(int p[])
{
int i;
for(i=0;i<MAX;i++)
if(p[i]!=0)
printf("%dX^%d ",p[i],i);
}
void add(int p1[], int p2[], int p3[])
{
int i;
for(i=0;i<MAX;i++)
p3[i]=p1[i]+p2[i];
}
void multiply(int p1[], int p2[], int p3[])
{
int i,j;
init(p3);
for(i=0;i<MAX;i++)
for(j=0;j<MAX;j++)
p3[i+j]=p3[i+j]+p1[i]*p2[j];
}
void init(int p[])
{
int i;
for(i=0;i<MAX;i++)
p[i]=0;
}
Also Read: C Program for Addition of two Sparse Matrices
Also Read: C Program for Array Representation of Stack [Push, Pop and Display]
Polynomial addition, multiplication (8th degree polynomials) using linked list
#include<math.h>
#include<stdio.h>
#include<conio.h>
#define MAX 17
typedef struct node
{
int coeff;
struct node *next;
}node;
node * init();
void read(node *h1);
void print(node *h1);
node * add(node *h1,node *h2);
node * multiply(node *h1,node *h2);
/*Polynomial is stored in a linked list, ith node gives coefficient of x^i .
a polynomial 3x^2 + 12x^4 will be represented as (0,0,3,0,12,0,0,....)
*/
void main()
{
node *h1=NULL,*h2=NULL,*h3=NULL;
int option;
do
{
printf("
1 : create 1st polynomial");
1 : create 1st polynomial");
printf("
2 : create 2nd polynomial");
2 : create 2nd polynomial");
printf("
3 : Add polynomials");
3 : Add polynomials");
printf("
4 : Multiply polynomials");
4 : Multiply polynomials");
printf("
5 : Quit");
5 : Quit");
printf("
Enter your choice :");
Enter your choice :");
scanf("%d",&option);
switch(option)
{
case 1:h1=init();read(h1);break;
case 2:h2=init();read(h2);break;
case 3:h3=add(h1,h2);
printf("
1st polynomial -> ");
1st polynomial -> ");
print(h1);
printf("
2nd polynomial -> ");
2nd polynomial -> ");
print(h2);
printf("
Sum = ");
Sum = ");
print(h3);
break;
case 4:h3=multiply(h1,h2);
printf("
1st polynomial -> ");
1st polynomial -> ");
print(h1);
printf("
2nd polynomial -> ");
2nd polynomial -> ");
print(h2);
printf("
Product = ");
Product = ");
print(h3);
break;
}
}while(option!=5);
}
void read(node *h)
{
int n,i,j,power,coeff;
node *p;
p=init();
printf("
Enter number of terms :");
Enter number of terms :");
scanf("%d",&n);
/* read n terms */
for (i=0;i<n;i++)
{ printf("
enter a term(power coeff.)");
enter a term(power coeff.)");
scanf("%d%d",&power,&coeff);
for(p=h,j=0;j<power;j++)
p=p->next;
p->coeff=coeff;
}
}
void print(node *p)
{
int i;
for(i=0;p!=NULL;i++,p=p->next)
if(p->coeff!=0)
printf("%dX^%d ",p->coeff,i);
}
node * add(node *h1, node *h2)
{
node *h3,*p;
h3=init();
p=h3;
while(h1!=NULL)
{
h3->coeff=h1->coeff+h2->coeff;
h1=h1->next;
h2=h2->next;
h3=h3->next;
}
return(p);
}
node * multiply(node *h1, node *h2)
{
node *h3,*p,*q,*r;
int i,j,k,coeff,power;
h3=init();
for(p=h1,i=0;p!=NULL;p=p->next,i++)
for(q=h2,j=0;q!=NULL;q=q->next,j++)
{
coeff=p->coeff * q->coeff;
power=i+j;
for(r=h3,k=0;k<power;k++)
r=r->next;
r->coeff=r->coeff+coeff;
}
return(h3);
}
node * init()
{
int i;
node *h=NULL,*p;
for(i=0;i<MAX;i++)
{
p=(node*)malloc(sizeof(node));
p->next=h;
p->coeff=0;
h=p;
}
return(h);
}

Subscribe to:
Posts (Atom)