#include <stdio.h>
#include<string.h>
#include<malloc.h>
int main()
{
int n,l,t=0,i=0;
char s[200];
scanf("%d",&n);
int* ptd[100];
while(i<n)
{
scanf("%s",s); //gets(s);
l = strlen(s);
for(t=0;t<l;t++)
{
if('A'<=s[t]&&s[t]<'Z')
s[t] = s[t]+32;
else if('a'<=s[t]&&s[t]<'z')
s[t] = s[t]-32;
}
ptd[i]="s";
i++;
}
for(t=0;t<n;t++)
printf("%s",*ptd[t]);
return 0;
}
jfhdibrbfjd
霜花似雪
为什么将button改成imagebutton时程序没有报错但是在运行的时候程序会停止运行?
为什么我运行安卓程序时会出现这种错误,怎么办,这是出什么问题呢,求大神指导啊
运行时停止运行
运行程序不自动停止,需要手动停止调试
相关分类