0
0
0
陈喆鹏
资深光能
资深光能
发错了,是
#include<windows.h>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
srand(time(0));
int w=99999;
while(w--)
SetCursorPos(rand()%x,rand()%y);
return 0;
}
0
0
0
暴展文
初级守护
初级守护
运行试试:
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
long long int a,i,b,c=1;
cin>>a;
a=10000;
for(i=1;i<=a;i++){
for(b=1;b<=a;b++){
c=i*b;
cout<<i<<"*"<<b<<"="<<c<<' ';
}
cout<<endl;
}
return 0;
}
0
0
0
0
0