c++的这程序的置换有没有大佬讲一下,可以的话画个图,调试了一下不明白指针后面置换后结果是“县市省”?
- c语言程序 最好讲解一下设计思路画一下流程图
- 有没有大佬帮看下这个图有几个奇点,是一笔画还是多笔画
- 请帮我编写一个C程序,能将角度和弧度互换,需要在turbo c2.0下调试通过
- 有没有大佬知道这是谁/有这个一样角色的图片/是谁画的QAQ
c语言程序 最好讲解一下设计思路画一下流程图
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{ int i,a,b,c,d,n=0;
srand(time(0));
for(i=0; i<10; i++) //计算10次
{ a=rand()%41+10; //产生10~50之间被乘数
b=(70+rand()%31)/a; //假定积在70~100之间,取整数商作为乘数
c=a*b; //重新计算积
printf("%d*%d=",a,b); //打印题目
scanf("%d",&d); //接收答案
if(c==d) //判断对错
{ printf("OK!\n");
n++;
}
else printf("ERROR!\n");
}
printf("练习成绩为:%d 分\n",10*n); //给出10题的总分
printf("\n");
return 0;
}
有没有大佬帮看下这个图有几个奇点,是一笔画还是多笔画
一笔就画出来了,两个奇点。
请帮我编写一个C程序,能将角度和弧度互换,需要在turbo c2.0下调试通过
void __fastcall TForm1::Button1Click(TObject *Sender)
{
double x=2, z=2;
int a=1, b=3;
while(z>1e-15)
{
z = z*a/b;
x += z;
a++;
b+=2;
}
Memo1->Text = AnsiString().sprintf("Pi=%.13f", x);
}
void __fastcall TForm1::Button2Click(TObject *Sender)
{
const ARRSIZE=1010, DISPCNT=1000; //定义数组大小,显示位数
char x[ARRSIZE], z[ARRSIZE]; //x[0] x[1] . x[2] x[3] x[4] .... x[ARRSIZE-1]
int a=1, b=3, c, d, Run=1, Cnt=0;
memset(x,0,ARRSIZE);
memset(z,0,ARRSIZE);
x[1] = 2;
z[1] = 2;
while(Run && (++Cnt<200000000))
{
//z*=a;
d = 0;
for(int i=ARRSIZE-1; i>0; i--)
{
c = z[i]*a + d;
z[i] = c % 10;
d = c / 10;
}
//z/=b;
d = 0;
for(int i=0; i<ARRSIZE; i++)
{
c = z[i]+d*10;
z[i] = c / b;
d = c % b;
}
//x+=z;
Run = 0;
for(int i=ARRSIZE-1; i>0; i--)
{
c = x[i] + z[i];
x[i] = c%10;
x[i-1] += c/10;
Run |= z[i];
}
a++;
b+=2;
}
Memo1->Text = AnsiString().sprintf("计算了 %d 次\r\n",Cnt);
Memo1->Text = Memo1->Text + AnsiString().sprintf("Pi=%d%d.\r\n", x[0],x[1]);
for(int i=0; i<DISPCNT; i++)
{
if(i && ((i%100)==0))
Memo1->Text = Memo1->Text + "\r\n";
Memo1->Text = Memo1->Text + (int)x[i+2];
}
}
有没有大佬知道这是谁/有这个一样角色的图片/是谁画的QAQ
画师深夜 P站ID:15385092 作品ID:72381095 角色叫鞠矢一梅,为作者原创角色