/*我用c++做一下,你可以把输入输出自己转化一下*/
#include<iostream.h>
#define MaxSize 100
int data[MaxSize][MaxSize]
void func(char str[],int n)// str 是字符串,n是串长度
{
int i,j
i=0
for(i=0i<ni++)
{
j=0
while(str[j]!='\0')
{
data[i][j]=(int)(str[(j+i)%n]-0x30)
j++
}
}
}
void main()
{
char str[]="123"
int n=3
func(str,3)
for(int i=0i<ni++)
{
int j=0
while(j!=n)
{
cout<<data[i][j]<<' '
j++
}
cout<<endl
}
}
#include <stdio.h>#include <time.h>
int main()
{
int a,b
srand(time(NULL))
a=rand()
scanf("%d",&b)
a==b?printf("true"):printf("false")
return 0
}
//运行示例:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)