#include <iostream.h>
#include <conio.h>
#include <stdlib.h>
#include <dos.h>
#include <time.h>
void main()
{
clrscr();
int n = 30000;
double s=0;
int a[30000];
cout << "Array has " << n << " elements 3 times summed";
for (int i=0; i<n; i++)
{
a[i]=rand() % 10 + 1;
}
clock_t begin = clock();
for(i=0; i<n; i++)
{
s+=a[i];
}
for(i=0; i<n; i++)
{
s+=a[i];
}
for(i=0; i<n; i++)
{
s+=a[i];
}
clock_t end = clock();
cout << "\nExecution time for the sum in C++ is: " << ((double)(end-begin)/CLOCKS_PER_SEC);
int tmp;
clock_t start = clock();
for (int j=0;j<3;j++){
for (i=0;i<n;i++)
asm {
mov ax,13
add ax,2
}
}
clock_t stop = clock();
cout << "\nExecution time for the sum in ASM is: " << ((double)(stop-start)/CLOCKS_PER_SEC);
cout<<"\nSum: "<< s;
getch();
}
答案 0 :(得分:0)
您正在更改ax
的值,但如果有ax
,则无法确定C ++代码中的哪个局部变量由 mov ax,13
add ax,2
add <localvar>, ax
表示。
类似的东西:
https://
在这种情况下是合适的。