各位高手帮个忙啊,帮我修改这个程序好吗?谢谢你们了.
发布网友
发布时间:2024-10-14 08:45
我来回答
共1个回答
热心网友
时间:2024-10-26 10:48
我这没C的编绎器,你自己试一下看对不对吧。
void main()
{
char xx[40];
int i,j;
for(i=0;i<39;i++)
scanf("%s",&xx[i]);
for(j=i;j>-1;j--){
printf(xx[j]);
}
}
我靠,明显欺负我长时间没用C语言了。
刚给你查了一个多小时的C语言资料。
printf()应该加格式控制。printf("%c",xx[i]);
另入,输入字符串也不是你那样输入的。
#include<stdio.h>
#include<string.h>
main()
{
char str[40];
int i;
printf("input string:");
gets(str);
for(i=strlen(str)-1;i>=0;i--){
printf("%c",str[i]);
}
}
没那么多精力帮你弄了,下面是分割字符串的代码,你自己结合着弄吧。
#include <iostream>
#include <string>
using namespace std;
char str[] = "A string\tof ,,tokens\nand some more tokens";
char seps[] = " ,\t\n";
char *token;
void main(void)
{
cout << "\n\n" << str << "\n\n" << "Tokens:\n" ;
token = strtok( str, seps );
while( NULL != token )
{
cout << token << ' ';
token = strtok( NULL, seps );
}
cout << "\n\n" ;
}