摘要: #include <iostream> #include <cstdio> using namespace std; int main(){ char chl[1000],ch2; int num[26],i,k; for(i=0;i<26;i++){ num[i]=0; } gets(chl); 阅读全文
posted @ 2023-08-07 09:39 爱吃泡面的皮卡 阅读(14) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ int n,a[100]={},x=0,Max=0; cin>>n; for(int i=1;i<=n;i++){ if(n%i==0){ a[x]=i; cout<<a[x] ; x++; } 阅读全文
posted @ 2023-08-07 08:27 爱吃泡面的皮卡 阅读(39) 评论(0) 推荐(0)