这个程序运行减法的时候有错误.如果我从键盘输入一个负数就会出错.急#include#include#include#includeint scan(){char s[100];int i,t,z=0;do{z=0;gets(s);for(i=0;s[i]!='\0';i++)if(s[i]'9') break;if(i >= strlen(s))for(t=0;s[t]!='\0';t++)...
请编写一个程序,将用户从键盘输入的文本字符串(只包含a~z的字符且长度小于100)进行加密后输出。 程序的运行结果示例1: Input a string:baidu↙ edlgx 程序的运行结果示例2: Input a string:xyz↙ abc 输入提示信息:"Input a string:" 输入格式: 用 gets()函数 输出格式:用 puts()函数 为避免出现格式错误...