题解列表

筛选

简单易懂(C语言代码)

摘要:#include<stdio.h>int isP(int x){     int temp = 0, p = x;     while (x)     {         temp = temp *……

C语言训练-数字母 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入一个字符串,数出其中的字母的个数.*/#include <stdio.h>int main(){ int i,sum=0; char a[100]; scanf(……