#include <iostream> using namespace std; int a[21]; int main( ) { int x,y,y_1,j_k,j_1,g,e; x=3456;y=264;j_k=20; for(j_1=1;j_1<=20;++j_1) a[j_1]=0; for(int i=1;i<=20;i++) { cout<<a[i]<<" "; } cout<<endl; while( y!=0) { y_1=y%10; y=y/10; //cout<<"y_1="<<y_1<<" y="<<y<<endl; //cout<<"01 j_k="<<j_k<<endl; while( y_1!=0 )//加法模拟乘法 按位乘 { g=x; //cout<<"g="<<g<<endl; for( e=j_k;e>=1;--e) { g=g+a[e]; a[e]=g%10; g=g/10; //cout<<"a[e]="<<a[e]<<endl; //cout<<"g="<<g<<endl; } y_1=j_1-1; } j_k=j_k-1; //cout<<"02 j_k="<<j_k<<endl; } j_1=1; while( a[j_1]==0 ) j_1=j_1+1; cout<<j_1<<endl; for( j_k=j_1;j_k<=20;++j_k) cout<<" "<<a[j_k]; return 0; } /* 答案:9 1 4 7 6 0 */
信息学奥赛之初赛 第1轮 讲解(1-8课)
CSP初赛(1-15课)
https://blog.csdn.net/dllglvzhenfeng/article/details/130887519
CSP-J初赛集训(0-26课)
https://blog.csdn.net/dllglvzhenfeng/article/details/130891766
阅读程序写结果:选择结构-2021-9-4 19:18:21
阅读程序写结果:循环结构-2021-9-5 15:05:00
c++ 阅读程序写结果:数组1
c++ 阅读程序写结果:数组2
阅读程序写结果:函数
阅读程序写结果 入门篇 1、NOIP1998
阅读程序写结果 入门篇 2、NOIP1998 普及组3.2
阅读程序写结果 入门篇 3、NOIP2001普及组阅读程序写结果3.1
阅读程序写结果 入门篇 3、NOIP2001普及组阅读程序写结果3.1_dllglvzhenfeng的博客-CSDN博客
阅读程序写结果 入门篇(1-12题)
阅读程序 普及篇 5、NOIP2001
https://blog.csdn.net/dllglvzhenfeng/article/details/130906902
第三章 阅读程序 第2节 普及篇 6、【NOIP2001】
https://blog.csdn.net/dllglvzhenfeng/article/details/130917098
阅读程序 普及篇 10、NOIP2004
https://blog.csdn.net/dllglvzhenfeng/article/details/130904258